mathpix-markdown-it 1.0.75 → 1.0.77

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 (32) hide show
  1. package/.idea/codeStyles/Project.xml +0 -24
  2. package/.idea/workspace.xml +564 -360
  3. package/README.md +2 -0
  4. package/es5/bundle.js +1 -1
  5. package/es5/index.js +1 -1
  6. package/lib/components/mathpix-markdown/index.js +3 -2
  7. package/lib/components/mathpix-markdown/index.js.map +1 -1
  8. package/lib/markdown/index.js +3 -2
  9. package/lib/markdown/index.js.map +1 -1
  10. package/lib/markdown/mathpix-markdown-plugins.js +3 -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/mdPluginRaw.js +2 -1
  20. package/lib/markdown/mdPluginRaw.js.map +1 -1
  21. package/lib/mathjax/index.d.ts +2 -1
  22. package/lib/mathjax/index.js +18 -9
  23. package/lib/mathjax/index.js.map +1 -1
  24. package/lib/mathjax/mathjax.d.ts +5 -5
  25. package/lib/mathjax/mathjax.js +23 -8
  26. package/lib/mathjax/mathjax.js.map +1 -1
  27. package/lib/mathjax/serialized-ascii/index.js +44 -6
  28. package/lib/mathjax/serialized-ascii/index.js.map +1 -1
  29. package/lib/mathpix-markdown-model/index.d.ts +2 -0
  30. package/lib/mathpix-markdown-model/index.js +3 -2
  31. package/lib/mathpix-markdown-model/index.js.map +1 -1
  32. package/package.json +1 -1
package/README.md CHANGED
@@ -674,6 +674,7 @@ 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 |
677
678
 
678
679
  ### optionsMathpixMarkdown
679
680
 
@@ -696,6 +697,7 @@ The `MathpixMarkdown` React element accepts the following props:
696
697
  | `htmlSanitize` | [THtmlSanitize](https://github.com/Mathpix/mathpix-markdown-it#thtmlsanitize);*`{}`* | Sets html output options (if `htmlTags=true`). Cleans up user html input. |
697
698
  | | | Removes script tags and stuff. Removes broken and malicious html. Set to `false` to disable |
698
699
  | `smiles` | [ISmilesOptions](https://github.com/Mathpix/mathpix-markdown-it#ismilesoptions);*`{}`* | Sets options to output chemistry equation |
700
+ | `nonumbers` | boolean;*`false`* | Sets options to prevent equations, tables, figure from being numbered |
699
701
 
700
702
  ### TOutputMath
701
703