Releases: UrbanMonastics/Source-Text-Parser
Releases · UrbanMonastics/Source-Text-Parser
v0.4.3
v0.4.2
v0.4.1 - Refocus on Text Parsing
We have made the decision to split the library into two pieces. This one will focus on the extended markdown parsing, while the other will manage the various libraries of texts that are included, and finding the correct text/version/section to parse.
v0.4 - Renamed Library and Namespace
This is a breaking change. The library and namespace have been renamed to SourceTextParser
The composer project has also been updated
composer require UrbanMonastics/SourceTextParser
Example of usage with new naming
$SourceTextParser = new /UrbanMonastics/SourceTextParser();
echo $SourceTextParser->text("Hello *Source Parser*!"); # prints: <p>Hello <em>Source Parser</em>!</p>