aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix cargo clippy lintsHEADmainLibravatar cel 🌸2023-08-151-1/+1
|
* Add ability to enable or disable html checkbox checkabilityLibravatar cel 🌸2023-08-153-2/+52
|
* 1.0.0-alpha.11Libravatar Titus Wormer2023-07-102-10/+10
|
* Fix parsing of nested linksLibravatar Fedor Sheremetyev2023-07-102-2/+24
| | | | | | | | Enter event for `LabelText` should be inserted before existing events at the index in order to have correct nesting. Otherwise nested elements could have Enter event first and that would result in incorrect nesting in the tree when converting to AST. Closes GH-73. Closes GH-50.
* Fix internal docs on grammar of html (flow)Libravatar Titus Wormer2023-06-231-3/+3
|
* 1.0.0-alpha.10Libravatar Titus Wormer2023-06-132-10/+10
|
* Update dev-dependenciesLibravatar Titus Wormer2023-06-132-3/+3
|
* Fix code-styleLibravatar Titus Wormer2023-05-251-1/+1
|
* Fix escape in titlesLibravatar Titus Wormer2023-05-231-1/+1
|
* Refactor some codeLibravatar Titus Wormer2023-05-2310-25/+39
|
* Remove unneeded branchLibravatar Titus Wormer2023-05-181-6/+1
|
* Remove superfluous codeLibravatar Titus Wormer2023-05-131-4/+1
|
* Refactor to move sectionLibravatar Titus Wormer2023-05-111-8/+8
|
* Add links to `mdxjs-rs`Libravatar Titus Wormer2023-05-111-0/+12
|
* Fix typo in docsLibravatar Titus Wormer2023-05-111-1/+3
|
* Remove unneeded checkLibravatar Titus Wormer2023-05-021-1/+1
|
* 1.0.0-alpha.9Libravatar Titus Wormer2023-04-272-10/+10
|
* Rename `json` feature to `serde`Libravatar Rafael Bachmann2023-04-274-50/+50
| | | | | Closes GH-59. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
* 1.0.0-alpha.8Libravatar Titus Wormer2023-04-222-10/+10
|
* Update dev-dependenciesLibravatar Titus Wormer2023-04-221-1/+1
|
* Fix typo in docsLibravatar Titus Wormer2023-04-221-1/+1
|
* Fix crash in MDX whitespaceLibravatar Mick van Gelderen2023-04-222-9/+23
| | | | Related-to: GH-26. Closes GH-60.
* Add `honggfuzz` as an alternative fuzzerLibravatar Christian Murphy2023-04-015-3/+29
| | | | | Closes GH-55. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
* Fix AST node debug representation to pretty printLibravatar Mia2023-02-281-34/+34
| | | | | Closes GH-51. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
* 1.0.0-alpha.7Libravatar Titus Wormer2023-02-102-10/+10
|
* Add `log` feature, document featuresLibravatar Titus Wormer2023-02-104-2/+14
|
* Move `log` to optional dependenciesLibravatar pinkforest(she/her)2023-02-103-2/+23
| | | Closes GH-48.
* Remove `json` from default featuresLibravatar pinkforest(she/her)2023-02-061-1/+1
| | | | | | Closes GH-47. Closes GH-49. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
* Fix to add `features: 'derive'` for serdeLibravatar Kyle McCarthy2023-02-061-1/+1
| | | | | | | | | Related-to: GH-10. Related-to: GH-30. Related-to: GH-37. Closes GH-44. Closes GH-45. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
* 1.0.0-alpha.6Libravatar Titus Wormer2023-01-312-10/+10
|
* Add `codecov.yml`Libravatar Titus Wormer2023-01-311-0/+6
|
* Add renovateLibravatar Christian Murphy2023-01-311-0/+4
| | | | | Related-to: wooorm/mdxjs-rs#9. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
* Add release guidelinesLibravatar Titus Wormer2023-01-311-0/+12
|
* Update dev-dependenciesLibravatar Titus Wormer2023-01-311-1/+1
|
* Add support for serializing trees as JSONLibravatar Kyle McCarthy2023-01-036-18/+250
| | | | | | | | | This adds support for serializing the mdast syntax tree as JSON, with serde, through a feature. Closes GH-10. Related-to GH-30. Closes GH-37.
* Fix `start` on ordered lists in mdastLibravatar Titus Wormer2022-12-193-15/+32
| | | | Closes GH-38.
* 1.0.0-alpha.5Libravatar Titus Wormer2022-12-132-10/+10
|
* Remove unneeded codegen in actionsLibravatar Titus Wormer2022-12-131-2/+0
|
* Update dev-dependenciesLibravatar Titus Wormer2022-12-131-1/+1
|
* Replace build script with private crateLibravatar Titus Wormer2022-12-137-9/+29
| | | | | Closes GH-34. Closes GH-35.
* Add test for empty astLibravatar Titus Wormer2022-12-131-2/+17
|
* Add some tests for `Location`Libravatar Titus Wormer2022-12-131-0/+15
|
* Update tests for changes in `swc`Libravatar Titus Wormer2022-12-134-8/+8
|
* 1.0.0-alpha.4Libravatar Titus Wormer2022-11-252-10/+10
|
* Update dev-dependencyLibravatar Titus Wormer2022-11-251-1/+1
|
* Remove unneeded testsLibravatar Titus Wormer2022-11-2518-8106/+164
|
* Add mdx parser to fuzzingLibravatar Christian Murphy2022-11-251-0/+1
| | | | | Closes GH-25. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
* Fix double setext heading underlinesLibravatar Titus Wormer2022-11-253-4/+9
| | | | Related-to: GH-22.
* Fix GFM task list checkboxes followed by eolLibravatar Titus Wormer2022-11-253-46/+114
| | | | Closes GH-24.
* Remove unneeded `extern crate`sLibravatar Hocdoc2022-11-1066-100/+3
| | | | | Closes GH-28. Co-authored-by: Bernhard Berger <bernhardberger3456@gmail.com>