-1

Is there a tool like pandoc cli for converting HTML markup to StackOverflow markup syntax out there? I'm frankly not feeling up to digging the SO docs over and over to apply simple structure to my SO posts. Stuff like:

[link](http://link.com/), 
__italics__, 
**bolds**, 
# etc.

are ok, but I don't really want to bother remembering it...

Community
  • 1
  • 1
public override
  • 974
  • 8
  • 17
  • found this [perl script](http://daringfireball.net/projects/markdown/) useful also – public override Apr 19 '14 at 16:50
  • will eventually use pandoc and [html2text python script](http://www.aaronsw.com/2002/html2text/). – public override Apr 19 '14 at 17:11
  • This would have gotten different results if it did not say things like "not feeling up to digging" and "I don't really want to bother". For example, [Is there javascript to convert HTML to markdown? - Stack Overflow](http://stackoverflow.com/questions/2671930/is-there-javascript-to-convert-html-to-markdown) got better results. Also, this is a duplicate of it. – Sam Hobbs Jun 01 '16 at 14:59

1 Answers1

0

StackOverflow actually uses MarkDown, a popular html syntax. When writing answers and questions, it provides a WYSIWYG editor for common MD functions such as bolding, underlining, headers, links, etc. Comments are usually short and at the most contain some code or a link.

If you really need to you can google for a WYSIWYG online editor such as StackEdit that you can write your posts in.

Heck Yes Markdown seems to offer a useful api.

Huey
  • 5,110
  • 6
  • 32
  • 44