mathpix-markdown-it 1.0.76 → 1.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/.idea/codeStyles/Project.xml +0 -24
  2. package/.idea/workspace.xml +477 -383
  3. package/README.md +4 -0
  4. package/es5/bundle.js +1 -1
  5. package/es5/index.js +1 -1
  6. package/lib/components/mathpix-markdown/index.js +4 -2
  7. package/lib/components/mathpix-markdown/index.js.map +1 -1
  8. package/lib/markdown/index.js +4 -2
  9. package/lib/markdown/index.js.map +1 -1
  10. package/lib/markdown/mathpix-markdown-plugins.js +4 -2
  11. package/lib/markdown/mathpix-markdown-plugins.js.map +1 -1
  12. package/lib/markdown/md-block-rule/begin-table.js +3 -1
  13. package/lib/markdown/md-block-rule/begin-table.js.map +1 -1
  14. package/lib/markdown/md-block-rule/lists/index.d.ts +1 -0
  15. package/lib/markdown/md-block-rule/lists/index.js +11 -6
  16. package/lib/markdown/md-block-rule/lists/index.js.map +1 -1
  17. package/lib/markdown/md-inline-rule/lists.js +4 -1
  18. package/lib/markdown/md-inline-rule/lists.js.map +1 -1
  19. package/lib/markdown/md-renderer-rules/render-lists.d.ts +1 -1
  20. package/lib/markdown/md-renderer-rules/render-lists.js +6 -0
  21. package/lib/markdown/md-renderer-rules/render-lists.js.map +1 -1
  22. package/lib/markdown/mdPluginRaw.js +2 -1
  23. package/lib/markdown/mdPluginRaw.js.map +1 -1
  24. package/lib/markdown/mdPluginText.js +88 -0
  25. package/lib/markdown/mdPluginText.js.map +1 -1
  26. package/lib/mathjax/index.d.ts +2 -1
  27. package/lib/mathjax/index.js +18 -9
  28. package/lib/mathjax/index.js.map +1 -1
  29. package/lib/mathjax/mathjax.d.ts +5 -5
  30. package/lib/mathjax/mathjax.js +23 -8
  31. package/lib/mathjax/mathjax.js.map +1 -1
  32. package/lib/mathpix-markdown-model/index.d.ts +4 -0
  33. package/lib/mathpix-markdown-model/index.js +4 -2
  34. package/lib/mathpix-markdown-model/index.js.map +1 -1
  35. package/lib/styles/styles-lists.d.ts +1 -1
  36. package/lib/styles/styles-lists.js +1 -1
  37. package/lib/styles/styles-lists.js.map +1 -1
  38. package/package.json +1 -1
package/README.md CHANGED
@@ -674,6 +674,8 @@ The `MathpixMarkdown` React element accepts the following props:
674
674
  | `smiles` | [ISmilesOptions](https://github.com/Mathpix/mathpix-markdown-it#ismilesoptions);*`{}`* | Sets options to output chemistry equation |
675
675
  | `htmlWrapper` | [THtmlWrapper](https://github.com/Mathpix/mathpix-markdown-it#thtmlwrapper);*`{}`* | Sets options for output full html page |
676
676
  | `accessibility` | [TAccessibility](https://github.com/Mathpix/mathpix-markdown-it#taccessibility);*`{}`* | Sets options to accessibility |
677
+ | `nonumbers` | boolean;*`false`* | Sets options to prevent equations, tables, figure from being numbered |
678
+ | `showPageBreaks` | boolean;*`false`* | Hidden tags will be shown in html like page break |
677
679
 
678
680
  ### optionsMathpixMarkdown
679
681
 
@@ -696,6 +698,8 @@ The `MathpixMarkdown` React element accepts the following props:
696
698
  | `htmlSanitize` | [THtmlSanitize](https://github.com/Mathpix/mathpix-markdown-it#thtmlsanitize);*`{}`* | Sets html output options (if `htmlTags=true`). Cleans up user html input. |
697
699
  | | | Removes script tags and stuff. Removes broken and malicious html. Set to `false` to disable |
698
700
  | `smiles` | [ISmilesOptions](https://github.com/Mathpix/mathpix-markdown-it#ismilesoptions);*`{}`* | Sets options to output chemistry equation |
701
+ | `nonumbers` | boolean;*`false`* | Sets options to prevent equations, tables, figure from being numbered |
702
+ | `showPageBreaks` | boolean;*`false`* | Hidden tags will be shown in html like page break |
699
703
 
700
704
  ### TOutputMath
701
705