markdown-to-jsx
markdown-to-jsx copied to clipboard
🏭 The most lightweight, customizable React markdown component.
If i write a text string "Hello\n\nHow are you?" I expect: Hello How are you? Instead markdown-to-jsx converts it to: Hello How are you? I am specifically using this with...
I want to be able to render an anchor tag with an onclick attribute that executes some javascript. This was possible before version 6.11.4, but was changed in [this PR](https://github.com/quantizor/markdown-to-jsx/pull/249)....
The PR closes #564. Add a new option `sanitization`.
Input: `1. Test` Expected: ```html Test ``` Actual: ```html 1. Test ``` Note: if there is a newline at the end, like `1. Test\n`, then it works as expected.
When a numbered list is followed by an unordered list Given a numbered list with some nested items: ``` 1. This is the primary list 2. Which may have nested...
Bumps [ejs](https://github.com/mde/ejs) from 3.1.8 to 3.1.10. Release notes Sourced from ejs's releases. v3.1.10 Version 3.1.10 v3.1.9 Version 3.1.9 Commits d3f807d Version 3.1.10 9ee26dd Mocha TDD e469741 Basic pollution protection 715e950...
比如 > 2024.04.20[参考来源](https://a.b/) 这样是无法正常解析链接的✖✖✖✖ > 1 2024.04.20[参考来源](https://a.b/) 这样是正常解析链接的 > [参考来源](https://a.b/)2024.04.20 这样是正常解析链接的 2024.04.20[参考来源](https://a.b/) 有些正常解析有些不正常
Objectives - ~~allow for multiple rendering targets (react, solid, etc)~~ punting this one to a future major so this can be released faster - [ ] simplify text-handling regexes to...
The fix resolved the issue in #520 but not below test: ``` render(compiler(` `)) ======================================= </div> it('', () => { render(compiler(` `)) expect(root.innerHTML).toMatchInlineSnapshot(` `) }) ```
The issue still exist in the chrome browser, did the deployment went live?