Exporting Google docs to Markdown and HTML



This content originally appeared on DEV Community and was authored by Faisal

You can export public google docs using their docId to markdown by making a GET request to:

GET https://docs.google.com/document/d/${docId}/export?format=markdown

You can export to html by making a GET request to:

GET https://docs.google.com/document/d/${docId}/export?format=html


This content originally appeared on DEV Community and was authored by Faisal