Skip to content

Releases: theory/text-markup

Release v0.33

15 Feb 20:13
v0.33
235c4a0
Compare
Choose a tag to compare

Changes for v0.33

  • Added support for registering a regular expression for Text::Markup::None by passing it in the use statement. The None parser otherwise is only the fallback parser used by parse() when Text::Markup cannot determine which parser to use.

Release v0.32

08 Feb 03:24
v0.32
0aaa354
Compare
Choose a tag to compare

Changes for v0.32

  • Added the ability to change the regular expression for a format by passing it in the use statement.

Release v0.31

10 Sep 23:39
v0.31
21ab19b
Compare
Choose a tag to compare

Changes for v0.31

  • Fixed the passing of parameters to parse().
  • Documented the parameters passable to parse() for each parser.

Release v0.30

10 Sep 16:49
v0.30
4b92ab6
Compare
Choose a tag to compare

Changes for v0.30

  • Removed very old custom paths to docutils (reST) and asciidoc binaries on Windows. Users must ensure that the proper commands are in the PATH, instead.
  • Added Text::Markdown::Asciidoctor, which uses the asciidoctor command, as a updated alternative to Text::Markdown::Asciidoc, which uses the legacy asciidoc command. Text::Markdown will not use this formatter by default, but when explicitly loaded will be used instead of Text::Markup::Asciidoc.
  • Added Text::Markdown::CommonMark, which uses the cmark library, via the CommonMark module. Text::Markdown will not use this formatter by default, but when explicitly loaded will be used instead of Text::Markup::Markdown.
  • De-duped the utilities for managing external commands from the Rest and Asciidoc modules into Text::Markdown::Cmd.

Release v0.25

04 Sep 22:27
v0.25
c5e2172
Compare
Choose a tag to compare

Changes for v0.25

  • Fixed the importation of Pod::Simple::XHTML, Text::Trac, Text::Textile, and Text::MediawikiFormat to use the correct syntax for requiring a minimum version. Thanks to Graham Knop for the PR (#27)!
  • Fixed a reStructuredText test failure on newer versions of docutils.
  • Moved development test dependencies from recommended prereqs to development prereqs.
  • Increased the minimum required Module::Build version to 0.4209.
  • Added GitHub Workflows for testing and releasing and removed Travis testing. Test on Perl 5.8 - 5.38 on Linux, macOS, an Windows.
  • Fixed bugs executing Rest and Asciidoc on Windows.
  • Updated Asciidoc ot find asciidoc.bat and asciidoc.exe on Windows.