-
I'm curious, if it's possible to download this and it be 100% locally hosted on a filesystem as HTML / javascript, and run through chrome? It'd be very handy for some internal documentation I'd like to develop. In a nutshell, my place of employment is VERY security conscious. To the point where I can't install anything on a server or on my desktop without authorization and/or change management, and this would likely get shot down. However something that's 100% in browser, and not "installed" should be ok. So I'd love to have this or a set of HTML files I can double click, paste in my markdown code, it auto-converts to html, then I copy out my html code. I'd especially like it to not have any external links out to the libraries inside of script tags, but every little piece is within the files on my filesystem. I admittedly don't know enough about javascript and html to know if this is even possible, but boy would it be handy for developing some documentation. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
We have an example of how to use marked in a browser on our README. You can copy marked.min.js to a If you just want to copy the HTML that is output for a given markdown file you can copy the markdown to our demo site and copy the HTML that is produced on the right side to an |
Beta Was this translation helpful? Give feedback.
We have an example of how to use marked in a browser on our README. You can copy marked.min.js to a
.js
file on your local server and access it a similar way if you don't want to use a CDN.If you just want to copy the HTML that is output for a given markdown file you can copy the markdown to our demo site and copy the HTML that is produced on the right side to an
.html
file.