Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add DOM Parser #259

Open
wants to merge 5 commits into
base: integration/v2
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: format fixes
littlespex committed Jun 18, 2024
commit bffafeb4cdf1afb06dc14bd4c0ec8eb7c1c301d1
1 change: 0 additions & 1 deletion src/main/js/doc.js
Original file line number Diff line number Diff line change
@@ -1516,7 +1516,6 @@ export class Set {
*/

/**
*
* @param {Node} node
* @returns {string | null}
*/
8 changes: 4 additions & 4 deletions src/main/js/error.js
Original file line number Diff line number Diff line change
@@ -45,10 +45,10 @@ export function reportFatal(errorHandler, msg) {
/**
* Generic interface for handling events. The interface exposes four
* methods:
* * <pre>info</pre>: unusual event that does not result in an inconsistent state
* * <pre>warn</pre>: unexpected event that should not result in an inconsistent state
* * <pre>error</pre>: unexpected event that may result in an inconsistent state
* * <pre>fatal</pre>: unexpected event that results in an inconsistent state
* - <pre>info</pre>: unusual event that does not result in an inconsistent state
* - <pre>warn</pre>: unexpected event that should not result in an inconsistent state
* - <pre>error</pre>: unexpected event that may result in an inconsistent state
* - <pre>fatal</pre>: unexpected event that results in an inconsistent state
* and termination of processing
* Each method takes a single <pre>string</pre> describing the event as argument,
* and returns a single <pre>boolean</pre>, which terminates processing if <pre>true</pre>.
1 change: 0 additions & 1 deletion src/main/js/utils.js
Original file line number Diff line number Diff line change
@@ -423,7 +423,6 @@ export function toComputedLength(lengthVal, lengthUnit, emLength, percentLength,
}

/**
*
* @param {Object} obj
* @param {string} prop
* @returns {boolean}