Gabe
Gabe

Reputation: 6347

Export text document in markdown format

I need to be able to save/export/convert a Rich Text Format or docx document into markdown (eg. "readme.md").

Next step needed is to convert those .md files into HTML and expose them on a website as static documentation.

I'll use NodeJs with doctor-md to convert those files and cheerio to scrape the generated html and insert it into an existing template.

So far:

Any advice on how to easily produce those md files?

Thanks

Upvotes: 1

Views: 2140

Answers (1)

lizasperling
lizasperling

Reputation: 36

Have you tried using https://stackedit.io/? It converts html (or text) into markdown and doesn't require using Git. You can access it on their website or using the Chrome app. You can create titles and lists in the editor here, and it will show you the corresponding text in markdown format. You can then save, publish, share, or download the file.

Upvotes: 2

Related Questions