Earlier quoted context omitted.
it is just as easy to read and write as markdown, and it does not require javascript libraries to be rendered
Is there a WYSIWYG simple editor for creating documents in HTML5? Something that's basically wordpad and produces pages that actually look the same on different browsers? Documentation for my projects is currently in raw ASCII because I couldn't find a satisfactory solution.
Show HN: Markdown page – Create a web page with just markdown
51–60 of 86 posts
Re: Show HN: Markdown page – Create a web page with just markdown
#52This is kind of neat but why not just use pandoc? pandoc -s input.md -t html -o output.html https://pandoc.org/
Scriptable Word to HTML sounds so useful.
Re: Show HN: Markdown page – Create a web page with just markdown
#53Re: Show HN: Markdown page – Create a web page with just markdown
#54Interesting. Out of curiosity, does anyone know if is there a webserver that natively converts Markdown to HTML?
Re: Show HN: Markdown page – Create a web page with just markdown
#55There has been Strapdownjs[1] around for quite a while now. It's simple, supports some theming as well. Anyway, good luck with this. Always fun to build something from scratch. [1] - http://strapdownjs.com/
I use for html code commenting - see the source code at https://elementcss.neocities.org/
The one thing these markdown examples are missing is a way to do grids! I bet there's a clever way to make columns and rows work.
Re: Show HN: Markdown page – Create a web page with just markdown
#56Interesting. Out of curiosity, does anyone know if is there a webserver that natively converts Markdown to HTML?
It works pretty well, but fairly bare bones and haven't updated it in a bit.
Re: Show HN: Markdown page – Create a web page with just markdown
#57This is kind of neat but why not just use pandoc? pandoc -s input.md -t html -o output.html https://pandoc.org/
Re: Show HN: Markdown page – Create a web page with just markdown
#58This is kind of neat but why not just use pandoc? pandoc -s input.md -t html -o output.html https://pandoc.org/
Why would you want to constantly recompile documents every time you make an edit to them? Why would you want to juggle two files for every document you produce?
Re: Show HN: Markdown page – Create a web page with just markdown
#59Re: Show HN: Markdown page – Create a web page with just markdown
#60This is kind of neat but why not just use pandoc? pandoc -s input.md -t html -o output.html https://pandoc.org/