-
Notifications
You must be signed in to change notification settings - Fork 1
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
merge from upstream #4
base: pr
Are you sure you want to change the base?
Commits on Sep 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 1eb5358 - Browse repository at this point
Copy the full SHA 1eb5358View commit details
Commits on Sep 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 83d39b7 - Browse repository at this point
Copy the full SHA 83d39b7View commit details -
FIX: Fix an issue where an inner node's mark information could reset the same mark provided by an outer node in the DOM parser.
Configuration menu - View commit details
-
Copy full SHA for c1593e8 - Browse repository at this point
Copy the full SHA c1593e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34e3e43 - Browse repository at this point
Copy the full SHA 34e3e43View commit details -
Configuration menu - View commit details
-
Copy full SHA for b8f177e - Browse repository at this point
Copy the full SHA b8f177eView commit details
Commits on Sep 12, 2020
-
Fix findIndex is not supported in IE (ProseMirror#53)
Co-authored-by: lastnigtic <[email protected]> FIX: Fix issue where 1.11.1 uses an array method not available on Internet Explorer.
Configuration menu - View commit details
-
Copy full SHA for c7c65ea - Browse repository at this point
Copy the full SHA c7c65eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for bd08108 - Browse repository at this point
Copy the full SHA bd08108View commit details
Commits on Sep 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4d62ca2 - Browse repository at this point
Copy the full SHA 4d62ca2View commit details
Commits on Sep 30, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 9df6d80 - Browse repository at this point
Copy the full SHA 9df6d80View commit details
Commits on Oct 11, 2020
-
Allow DOMOutputSpec values to already be {dom, contentDOM} objects
FEATURE: The output of `toDOM` functions can now be a `{dom, contentDOM}` object specifying the precise parent and content DOM elements. See https://discuss.prosemirror.net/t/contentdom-when-returning-a-dom-node-from-todom/3209
Configuration menu - View commit details
-
Copy full SHA for 9ed7f47 - Browse repository at this point
Copy the full SHA 9ed7f47View commit details -
Configuration menu - View commit details
-
Copy full SHA for 31cf53a - Browse repository at this point
Copy the full SHA 31cf53aView commit details
Commits on Dec 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 5564b0e - Browse repository at this point
Copy the full SHA 5564b0eView commit details
Commits on Dec 11, 2020
-
Implement nonconsuming parse rules (RFC 11)
See https://discuss.prosemirror.net/t/underline-parserule-that-excludes-links/3302/9 See https://github.com/ProseMirror/rfcs/blob/master/text/0011-nonconsuming-parse-rules.md FEATURE: Parse rules can now have a `consuming: false` property which allows other rules to match their tag or style even when they apply.
Configuration menu - View commit details
-
Copy full SHA for d5a82e5 - Browse repository at this point
Copy the full SHA d5a82e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for cc53b08 - Browse repository at this point
Copy the full SHA cc53b08View commit details
Commits on Dec 18, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ae6ab85 - Browse repository at this point
Copy the full SHA ae6ab85View commit details
Commits on Dec 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6ab3beb - Browse repository at this point
Copy the full SHA 6ab3bebView commit details -
FIX: Fix a bug where nested marks of the same type would be applied to the wrong node when parsing from DOM.
Configuration menu - View commit details
-
Copy full SHA for d385eff - Browse repository at this point
Copy the full SHA d385effView commit details -
Configuration menu - View commit details
-
Copy full SHA for b7aa9df - Browse repository at this point
Copy the full SHA b7aa9dfView commit details
Commits on Feb 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 18fd890 - Browse repository at this point
Copy the full SHA 18fd890View commit details
Commits on Feb 4, 2021
-
Make sure MarkType.removeFromSet removes _all_ instances
FIX: `MarkType.removeFromSet` now removes all instances of the mark, not just the first one. Issue ProseMirror/prosemirror-transform#17
Configuration menu - View commit details
-
Copy full SHA for 185cf4b - Browse repository at this point
Copy the full SHA 185cf4bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a0556b8 - Browse repository at this point
Copy the full SHA a0556b8View commit details -
Fix bug where the DOM parser would apply marks in invalid places
FIX: Fix an issue where nested tags that match mark parser rules could cause the parser to apply marks in invalid places. Closes ProseMirror/prosemirror#1130
Configuration menu - View commit details
-
Copy full SHA for 28aef80 - Browse repository at this point
Copy the full SHA 28aef80View commit details -
Configuration menu - View commit details
-
Copy full SHA for 67d65f2 - Browse repository at this point
Copy the full SHA 67d65f2View commit details
Commits on Feb 19, 2021
-
FEATURE: `Fragment.textBetween` is now public.
Configuration menu - View commit details
-
Copy full SHA for 024384b - Browse repository at this point
Copy the full SHA 024384bView commit details
Commits on Feb 22, 2021
-
Make Node.check check mark set validity
FIX: `Node.check` will now error if a node has an invalid combination of marks. Closes ProseMirror/prosemirror#1116
Configuration menu - View commit details
-
Copy full SHA for 06a044a - Browse repository at this point
Copy the full SHA 06a044aView commit details
Commits on Mar 10, 2021
-
Remove carriage return characters from parsed DOM content
Even when preserveWhitespace is "full". FIX: Don't leave carriage return characters in parsed DOM content, since they confuse Chrome's cursor motion. Issue ProseMirror/prosemirror#1138
Configuration menu - View commit details
-
Copy full SHA for eef20c8 - Browse repository at this point
Copy the full SHA eef20c8View commit details
Commits on Apr 6, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 41b48ab - Browse repository at this point
Copy the full SHA 41b48abView commit details -
Configuration menu - View commit details
-
Copy full SHA for 71c174d - Browse repository at this point
Copy the full SHA 71c174dView commit details
Commits on Apr 26, 2021
-
Don't ignore whitespace-only modes in DOM parsing when preserveWhites…
…pace is full FIX: DOM parsing with `preserveWhitespace: "full"` will no longer ignore whitespace-only nodes. Issue ProseMirror/prosemirror#1159
Configuration menu - View commit details
-
Copy full SHA for f28b89a - Browse repository at this point
Copy the full SHA f28b89aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c0b054 - Browse repository at this point
Copy the full SHA 3c0b054View commit details
Commits on Jun 16, 2021
-
More aggressively assign inline context in parseSlice
FIX: Be less agressive about dropping whitespace when the context isn't know in `DOMParser.parseSlice`. Issue ProseMirror/prosemirror#1182
Configuration menu - View commit details
-
Copy full SHA for 9ef5746 - Browse repository at this point
Copy the full SHA 9ef5746View commit details -
Configuration menu - View commit details
-
Copy full SHA for c1119ee - Browse repository at this point
Copy the full SHA c1119eeView commit details
Commits on Jul 22, 2021
-
Make serializeNode include marks
FIX: `DOMSerializer.serializeNode` will no longer ignore the node's marks.
Configuration menu - View commit details
-
Copy full SHA for cf06d61 - Browse repository at this point
Copy the full SHA cf06d61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ff774f - Browse repository at this point
Copy the full SHA 5ff774fView commit details
Commits on Oct 15, 2021
-
Configuration menu - View commit details
-
Copy full SHA for ab627a1 - Browse repository at this point
Copy the full SHA ab627a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for babdac8 - Browse repository at this point
Copy the full SHA babdac8View commit details
Commits on Oct 25, 2021
-
Extend textBetween API by accepting function to stringify leaf nodes
FEATURE: `textBetween` now allows its leaf text argument to be a function.
Configuration menu - View commit details
-
Copy full SHA for 039a2ee - Browse repository at this point
Copy the full SHA 039a2eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for ce7fbbb - Browse repository at this point
Copy the full SHA ce7fbbbView commit details
Commits on Nov 3, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 428a8ba - Browse repository at this point
Copy the full SHA 428a8baView commit details
Commits on Nov 12, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 2322130 - Browse repository at this point
Copy the full SHA 2322130View commit details
Commits on Dec 22, 2021
-
Configuration menu - View commit details
-
Copy full SHA for ffbe05b - Browse repository at this point
Copy the full SHA ffbe05bView commit details
Commits on Dec 27, 2021
-
FEATURE: A new `NodeSpec` property, `whitespace`, allows more control over the way whitespace in the content of the node is parsed. Issue ProseMirror/prosemirror-view#115
Configuration menu - View commit details
-
Copy full SHA for b9085fb - Browse repository at this point
Copy the full SHA b9085fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for fdc81cb - Browse repository at this point
Copy the full SHA fdc81cbView commit details
Commits on Dec 29, 2021
-
Fix whitespace option propagation in DOMParser
FIX: Fix a bug in the way whitespace-preservation options were handled in `DOMParser`.
Configuration menu - View commit details
-
Copy full SHA for 2de8628 - Browse repository at this point
Copy the full SHA 2de8628View commit details -
Configuration menu - View commit details
-
Copy full SHA for 95298fb - Browse repository at this point
Copy the full SHA 95298fbView commit details
Commits on Mar 18, 2022
-
Configuration menu - View commit details
-
Copy full SHA for b8c5166 - Browse repository at this point
Copy the full SHA b8c5166View commit details
Commits on Apr 26, 2022
-
Configuration menu - View commit details
-
Copy full SHA for fc9113f - Browse repository at this point
Copy the full SHA fc9113fView commit details
Commits on May 20, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c8c7b62 - Browse repository at this point
Copy the full SHA c8c7b62View commit details
Commits on May 21, 2022
-
Don't directly reference the global Node type
To avoid having our local Node type renamed to Node by the .d.ts bundler.
Configuration menu - View commit details
-
Copy full SHA for 696f1e7 - Browse repository at this point
Copy the full SHA 696f1e7View commit details
Commits on May 25, 2022
-
Make sure ParseContext.open doesn't become negative
FIX: Fix a crash in DOM parsing. See https://discuss.prosemirror.net/t/parse-issue-with-closeparent-option-enabled/4636
Configuration menu - View commit details
-
Copy full SHA for 26c634f - Browse repository at this point
Copy the full SHA 26c634fView commit details
Commits on May 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 10f2e2e - Browse repository at this point
Copy the full SHA 10f2e2eView commit details
Commits on Jun 7, 2022
-
Allow a leaf node to customize its textContent
FEATURE: Node specs for leaf nodes now support a property `leafText` which, when given, will be used by `textContent` and `textBetween` to serialize the node.
Configuration menu - View commit details
-
Copy full SHA for de1b852 - Browse repository at this point
Copy the full SHA de1b852View commit details -
Add stronger typing for Schema
... allowing the statically known names of mark and node types to be accessed without error even with the TypeScript option `noUncheckedIndexedAccess` enabled. In addition, this should also make the node and mark types available for auto-completion in the editor. See https://discuss.prosemirror.net/t/prosemirror-is-now-a-typescript-project/4624/34 (ProseMirror#67) FEATURE: Add optional type parameters to `Schema` for the node and mark names.
Configuration menu - View commit details
-
Copy full SHA for c10cf98 - Browse repository at this point
Copy the full SHA c10cf98View commit details -
Configuration menu - View commit details
-
Copy full SHA for d40def1 - Browse repository at this point
Copy the full SHA d40def1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 278e717 - Browse repository at this point
Copy the full SHA 278e717View commit details
Commits on Jun 8, 2022
-
Explicitly specify the type of nodeFromJSON
Since TypeScript somehow puts any in the .d.ts otherwise. Issue ProseMirror/prosemirror#1283
Configuration menu - View commit details
-
Copy full SHA for 6789b33 - Browse repository at this point
Copy the full SHA 6789b33View commit details
Commits on Jun 13, 2022
-
Configuration menu - View commit details
-
Copy full SHA for bddb01a - Browse repository at this point
Copy the full SHA bddb01aView commit details
Commits on Jun 15, 2022
-
FIX: Upgrade to orderedmap 2.0.0 to avoid around a TypeScript compilation issue.
Configuration menu - View commit details
-
Copy full SHA for eb9cc6f - Browse repository at this point
Copy the full SHA eb9cc6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 152ce93 - Browse repository at this point
Copy the full SHA 152ce93View commit details
Commits on Jul 13, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 8df218e - Browse repository at this point
Copy the full SHA 8df218eView commit details
Commits on Jul 21, 2022
-
Add NodeType.checkContent method
This method will throw a RangeError with some debugging information if the content is not valid.
Configuration menu - View commit details
-
Copy full SHA for b99fa72 - Browse repository at this point
Copy the full SHA b99fa72View commit details
Commits on Jul 27, 2022
-
Configuration menu - View commit details
-
Copy full SHA for cdb4819 - Browse repository at this point
Copy the full SHA cdb4819View commit details
Commits on Aug 11, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 777079a - Browse repository at this point
Copy the full SHA 777079aView commit details
Commits on Aug 18, 2022
-
Ensure Node.inlineContent returns a boolean
Previously, it could also return 0
Configuration menu - View commit details
-
Copy full SHA for 5e6c84d - Browse repository at this point
Copy the full SHA 5e6c84dView commit details
Commits on Oct 9, 2022
-
Discussion there works poorly, and it's started to attract spam. Use the forum instead.
Configuration menu - View commit details
-
Copy full SHA for cc6c475 - Browse repository at this point
Copy the full SHA cc6c475View commit details
Commits on Nov 14, 2022
-
Close blocks with inline content on seeing block-level elements
FIX: Improve DOM parsing of nested block elements mixing block and inline children. Closes ProseMirror/prosemirror#1332
Configuration menu - View commit details
-
Copy full SHA for dacd4cb - Browse repository at this point
Copy the full SHA dacd4cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b843bf - Browse repository at this point
Copy the full SHA 1b843bfView commit details
Commits on Nov 16, 2022
-
Copy all spec properties to Schema.spec
FIX: Copy all properties from the input spec to `Schema.spec`. See https://discuss.prosemirror.net/t/attaching-custom-props-to-schemas-spec/5036
Configuration menu - View commit details
-
Copy full SHA for 35e4fd6 - Browse repository at this point
Copy the full SHA 35e4fd6View commit details
Commits on Nov 18, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 0395aae - Browse repository at this point
Copy the full SHA 0395aaeView commit details
Commits on Jan 18, 2023
-
Allow style parse rules to clear marks
FEATURE: Parse rules for styles can now provide a `clearMark` property to remove pending marks (for example for `font-style: normal`). Issue ProseMirror/prosemirror#1347
Configuration menu - View commit details
-
Copy full SHA for be4ae4e - Browse repository at this point
Copy the full SHA be4ae4eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93e9a40 - Browse repository at this point
Copy the full SHA 93e9a40View commit details -
Configuration menu - View commit details
-
Copy full SHA for 018df43 - Browse repository at this point
Copy the full SHA 018df43View commit details
Commits on Jan 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e8778de - Browse repository at this point
Copy the full SHA e8778deView commit details
Commits on Feb 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 9201015 - Browse repository at this point
Copy the full SHA 9201015View commit details
Commits on Mar 21, 2023
-
Expose the index parameter in the Fragment descendants callback
FIX: Fix the types of `Fragment.desendants` to include the index parameter to the callback.
Configuration menu - View commit details
-
Copy full SHA for 1cbef0f - Browse repository at this point
Copy the full SHA 1cbef0fView commit details
Commits on May 17, 2023
-
FIX: Include CommonJS type declarations in the package to please new TypeScript resolution settings.
Configuration menu - View commit details
-
Copy full SHA for 8ff6941 - Browse repository at this point
Copy the full SHA 8ff6941View commit details -
Configuration menu - View commit details
-
Copy full SHA for e486c6f - Browse repository at this point
Copy the full SHA e486c6fView commit details
Commits on May 19, 2023
-
Allow active marks to be cleared by clearMark parse rules
FIX: Allow parse rules with a `clearMark` directive to clear marks that have already been applied. Closes ProseMirror/prosemirror#1376
Configuration menu - View commit details
-
Copy full SHA for 4ba155f - Browse repository at this point
Copy the full SHA 4ba155fView commit details
Commits on May 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 5a5aeba - Browse repository at this point
Copy the full SHA 5a5aebaView commit details
Commits on Jul 13, 2023
-
Don't apply style parse rules for skipped nodes
FIX: Don't apply style parse rules for nodes that are skipped by other parse rules. Closes ProseMirror/prosemirror#1398
Configuration menu - View commit details
-
Copy full SHA for 4947c38 - Browse repository at this point
Copy the full SHA 4947c38View commit details -
Configuration menu - View commit details
-
Copy full SHA for 387576a - Browse repository at this point
Copy the full SHA 387576aView commit details
Commits on Oct 8, 2023
-
Make sure textBetween includes block separators around empty textblocks
FIX: Make `textBetween` emit block separators for empty textblocks. Closes ProseMirror/prosemirror#1419
Configuration menu - View commit details
-
Copy full SHA for 49db562 - Browse repository at this point
Copy the full SHA 49db562View commit details
Commits on Dec 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1b2ebc7 - Browse repository at this point
Copy the full SHA 1b2ebc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for a37b6b3 - Browse repository at this point
Copy the full SHA a37b6b3View commit details
Commits on Apr 8, 2024
-
FEATURE: The `ParseRule` type is now a union of `TagParseRule` and `StyleParseRule`, with more specific types being used when appropriate.
Configuration menu - View commit details
-
Copy full SHA for 79a3806 - Browse repository at this point
Copy the full SHA 79a3806View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ea136e - Browse repository at this point
Copy the full SHA 4ea136eView commit details
Commits on May 6, 2024
-
Add support for linebreak replacement nodes in schema configuration
FEATURE: The new `linebreakReplacement` property on node specs makes it possible to configure a node type that `setBlockType` will convert to and from line breaks when appropriate. Issue ProseMirror/prosemirror#1460
Configuration menu - View commit details
-
Copy full SHA for a8a8041 - Browse repository at this point
Copy the full SHA a8a8041View commit details -
Configuration menu - View commit details
-
Copy full SHA for b71f73f - Browse repository at this point
Copy the full SHA b71f73fView commit details
Commits on May 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d616169 - Browse repository at this point
Copy the full SHA d616169View commit details
Commits on Jun 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7726c3b - Browse repository at this point
Copy the full SHA 7726c3bView commit details -
Use the parsed DOM styles instead of parsing them separately
FIX: Improve performance and accuracy of `DOMParser` style matching by using the DOM's own `style` object. Issue ProseMirror/prosemirror#1470
Configuration menu - View commit details
-
Copy full SHA for 899a98e - Browse repository at this point
Copy the full SHA 899a98eView commit details
Commits on Jun 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c6bbbbd - Browse repository at this point
Copy the full SHA c6bbbbdView commit details -
Configuration menu - View commit details
-
Copy full SHA for a6c5ce1 - Browse repository at this point
Copy the full SHA a6c5ce1View commit details
Commits on Jun 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d326751 - Browse repository at this point
Copy the full SHA d326751View commit details
Commits on Jun 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for cde085e - Browse repository at this point
Copy the full SHA cde085eView commit details -
Use a WeakMap in the resolved position cache to avoid leaking
FIX: Make sure resolved positions (and thus the document and schema hanging off them) don't get kept in the cache when their document can be garbage-collected. Closes ProseMirror#81
Configuration menu - View commit details
-
Copy full SHA for 54de8c0 - Browse repository at this point
Copy the full SHA 54de8c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68c3cd5 - Browse repository at this point
Copy the full SHA 68c3cd5View commit details
Commits on Jun 26, 2024
-
Directly query style props used in parse rules
... rather than iterating style items, which may show only normalized versions of the properties. FIX: Fix an issue where parse rules for CSS properties that were shorthands for a number of more detailed properties weren't matching properly. Closes ProseMirror/prosemirror#1473
Configuration menu - View commit details
-
Copy full SHA for 1f0c6ed - Browse repository at this point
Copy the full SHA 1f0c6edView commit details -
Configuration menu - View commit details
-
Copy full SHA for 751134c - Browse repository at this point
Copy the full SHA 751134cView commit details
Commits on Jul 14, 2024
-
Add attribute value validation
FEATURE: Attribute specs now support a `validate` property that can be used to provide a validation function for the attribute, to guard against corrupt JSON input.
Configuration menu - View commit details
-
Copy full SHA for fca6ef9 - Browse repository at this point
Copy the full SHA fca6ef9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1357ec7 - Browse repository at this point
Copy the full SHA 1357ec7View commit details -
Add code to actively guard against corrupted-attribute XSS attacks
FIX: Add code to `DOMSerializer` that rejects DOM output specs when they originate from attribute values, to protect against XSS attacks that use corrupt attribute input.
Configuration menu - View commit details
-
Copy full SHA for 6e977d7 - Browse repository at this point
Copy the full SHA 6e977d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3360cdc - Browse repository at this point
Copy the full SHA 3360cdcView commit details
Commits on Jul 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e313240 - Browse repository at this point
Copy the full SHA e313240View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc27a3c - Browse repository at this point
Copy the full SHA fc27a3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 25285b6 - Browse repository at this point
Copy the full SHA 25285b6View commit details -
FIX: Make attribute validation messages more informative.
Configuration menu - View commit details
-
Copy full SHA for e1f6e22 - Browse repository at this point
Copy the full SHA e1f6e22View commit details -
Configuration menu - View commit details
-
Copy full SHA for 343fcd7 - Browse repository at this point
Copy the full SHA 343fcd7View commit details
Commits on Jul 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 17709d3 - Browse repository at this point
Copy the full SHA 17709d3View commit details
Commits on Aug 6, 2024
-
Overhaul the way marks are tracked in DOMParser
FIX: Fix some corner cases in the way the DOM parser tracks active marks. See https://discuss.prosemirror.net/t/how-to-parse-nested-mark-attributes/6596
Configuration menu - View commit details
-
Copy full SHA for d47033e - Browse repository at this point
Copy the full SHA d47033eView commit details -
Configuration menu - View commit details
-
Copy full SHA for be711f9 - Browse repository at this point
Copy the full SHA be711f9View commit details
Commits on Aug 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for db4f579 - Browse repository at this point
Copy the full SHA db4f579View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28d3bc3 - Browse repository at this point
Copy the full SHA 28d3bc3View commit details