Gabin Aureche
Gabin Aureche
A user reported an issue where the Markdown content of an HTML node (within a Markdown file) is not parsed. The goal of this PR is to fix that. We...
The following example: ``` [fork](https://en.wikipedia.org/wiki/Fork_(software_development)) ``` Is properly displayed by GitHub but not supported by markup-it.
The following markdown: ``` Support _emphasis_followed by text and not whitespace ``` Should be treated as: ``` Support emphasisfollowed by text and not whitespace ``` Which seems to be a...
Right now, the following Markdown: ``` This is an [example](https://example.com/link's_example). ``` Is parsed to: ```html This is an [example](https://example.com/link's_example) ``` Instead of: ```html This is an example. ``` GitHub supports...
Right now, line breaks in list items are not properly serialized. The following document: ``` Hello\nWorld ``` Is serialized to: ``` * Hello World ``` Which is not rendered as...
Although #106 makes def parsing more standard and fixes parsing for a vast majority of use cases, it's not perfect. So far, this PR changes the test regarding def parsing...
Due to Docusaurus interpreting .md files as MDX, curly braces are troublesome. They're currently escaped in description and inline code, through #10 The issue with code blocks is that the...
For now setting `cache` to false causes the files to be reloaded every time and there's no way to manage any kind of revisions. A better solution would be to...
I am implementing tree sorting with a few differences from the official example. In `onDragMove` I use `event.active.rect.current.translated` and `event.over.rect` to decide whether an item should be moved before, inside...
This PR updates the dependencies.