rjeschke / txtmark

Yet another markdown processor for the JVM
Apache License 2.0
449 stars 100 forks source link

How to use it? #57

Open rudolfschmidt opened 6 years ago

rudolfschmidt commented 6 years ago

txtmark.Processor.process(post.content)

where is the reference to txtmark?

Pasupathi-Rajamanickam commented 6 years ago

Same question here. Poor documentation. :-1:

WangberlinT commented 4 years ago

Same question here :(

cyb3rko commented 2 years ago

@rudolfschmidt @Pasupathi-Rajamanickam @WangberlinT

I used TxtMark by importing the processor at first:

import com.github.rjeschke.txtmark.Processor

Then I could use it like so:

String html = Processor.process(myMarkdownString)