Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 2.44 KB

File metadata and controls

52 lines (39 loc) · 2.44 KB

MarkdownAST.jl changelog

Version v0.1.3

  • Feature Added support for converting HTMLBlock nodes to and from Markdown.HTMLBlock when using Julia 1.14+, where the corresponding stdlib type is available.
  • Feature Added support for converting HTMLInline nodes to and from Markdown.HTMLInline when using Julia 1.14+, where the corresponding stdlib type is available.
  • Feature Added support for Strikethrough nodes when converting to/from the Markdown stdlib AST. This interop requires Julia 1.14+, because Markdown.Strikethrough is only available in the stdlib starting there. (#31, #32)

Version v0.1.2

  • Feature Implemented replace and replace! to safely mutate trees in arbitrary ways, and empty!(node.children) to remove all the children of a node. (#22)
  • Bugfix The getproperty and setproperty! methods no longer print unnecessary debug log. (#19)

Version v0.1.1

  • Bugfix append! and prepend! methods now correctly append nodes from a node.children iterator. (#16)

Version v0.1.0

Initial release.