how to convert an md file md in odt

You can use pandoc. 
In Linux you can then add to Dolphin menu a new action, like: “pandoc %U -o %u.odt && rename 's/md.odt/odt/' *.odt

I prefer this:

cat %U >> Archivio/$(basename "%u") && sed -i -e 's@<span class="symbol">\\&#58771;<\\/span>@[\\&#58771;]{custom-style="symbol"}@g' -e 's@<span class="symbol">\\&#58772;<\\/span>@[\\&#58772;]{custom-style="symbol"}@g' -e 's@<span class="symbol">\\&#58773;<\\/span>@[\\&#58773;]{custom-style="symbol"}@g' -e 's@<span class="symbol">\\&#58774;<\\/span>@[\\&#58774;]{custom-style="symbol"}@g' %U && pandoc --lua-filter odt-custom-styles.lua %U -o %u.odt --reference-doc="default.ott" -f markdown-auto_identifiers && rename 's/md.odt/odt/' *.odtwhere defaul.ott (LibreOffice defaul template, so that I get an odt file with desired styles) is symlinked from /home to the folder where I have the md files.
Prefer the last pandoc realease, which recognizes filters.

Convert blockquotes

Not:

normal text
> blockqoute
normal text

but

normal text

> blockqoute

normal text

Lascia un commento

Il tuo indirizzo email non sarĂ  pubblicato. I campi obbligatori sono contrassegnati *