Releases: theory/text-markup
Releases · theory/text-markup
Release v0.33
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 byparse()
when Text::Markup cannot determine which parser to use.
Release v0.32
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
Changes for v0.31
- Fixed the passing of parameters to
parse()
. - Documented the parameters passable to
parse()
for each parser.
Release v0.30
Changes for v0.30
- Removed very old custom paths to
docutils
(reST) andasciidoc
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 legacyasciidoc
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
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
andasciidoc.exe
on Windows.