A converter from diffrent types of text formats to other text formats. Mostly vibecoded.
Example code
import vibe_remold.parsers.MarkdownParser;
import vibe_remold.generator.HtmlGenerator;
class Main {
public static function main() {
var md = "
# Hello
this is a paragraph
## A title
1. an item
1. a second item
1. a third item
";
var markdowParser = new MarkdownParser();
var parsed = markdowParser.parse(md);
var resultHtml = HtmlGenerator.render(parsed);
}
}