Tagged Questions
73
votes
11answers
13k views
Markdown versus ReStructuredText [closed]
What are people's thoughts on the pros and cons of Markdown versus ReStructuredText. Both seem like very usable and well-developed markup languages -- when might one want to use one over the other?
42
votes
6answers
7k views
Compare and contrast the lightweight markup languages (Textile, Markdown, and reStructuredText) [closed]
Please identify the most popular lightweight markup languages and compare their strengths and weaknesses. These languages should be general-purpose markup for technical prose, such as for ...
14
votes
4answers
1k views
.NET - Server-side Markdown to HTML Conversion
What is a good open source .NET library to convert markdown to HTML on the server?
If this has been answered somewhere else please point me to the post. Thanks.
11
votes
5answers
2k views
Markdown vs markup - are they related?
I'm using markdown to edit this question right now. In some wikis I used wiki markup. Are they the same thing? Are they related? Please explain. If I want to implement one or the other in a web ...
9
votes
5answers
869 views
How to store lightweight formatting (Textile, Markdown) in database?
I'm going to be implementing a lightweight formatting language (probably Textile, maybe Markdown) in a project I'm working on, and I'm wonder how best to store it in the database.
If the user is able ...
8
votes
3answers
475 views
What markup language for richly formated content?
When you are developing a web-based application and you want to allow richly formatted text from the user you have to make a choice about how to allow that input. Many different markup languages have ...
7
votes
1answer
161 views
Stackoverflow markup for javadoc
After a while I'm back writing JavaDoc. At the same time I grew fond of SO's markup, which is way more readable in plaintext than HTML. (Even the back tick wich I never used before, ever).
/**
* I'm ...
4
votes
2answers
226 views
Rendering lightweight markup languages with maven
I would like to render project documentation in html from a lighweight markup language like markdown or textile. What's easiest way to do this?
4
votes
4answers
387 views
How can I parse marked up text for further processing?
See updated input and output data at Edit-1.
What I am trying to accomplish is turning
+ 1
+ 1.1
+ 1.1.1
- 1.1.1.1
- 1.1.1.2
+ 1.2
- 1.2.1
- 1.2.2
- 1.3
+ 2
- 3
into a python data ...
3
votes
1answer
136 views
Is there a VBScript implementation of Markdown?
Does anybody know a VBScript implementation of Markdown?
I want to use it in my webpages written in Classic ASP to convert Markdown markup to HTML.
UPDATE Jan 26: Nobody?
2
votes
1answer
93 views
Java: Which Markup Language to use for User Comments
Which Markup Language do you use for user comments and other user generated content when building web applications for Java EE? I.e. if you were to code SO in Java, what would you use to parse the ...
2
votes
2answers
328 views
Markup language instead of HTML [closed]
I'm building a website, but don't want to write any HTML (or XML). I was thinking that I could use a nicer markup language instead.
I've looked at Markdown and reStructuredText, but they don't ...
2
votes
2answers
1k views
Convert Textile Markup to Markdown?
I'm merging legacy Systems and some components use Markdown and others use Textile formatting. This is extremely confusing to my users. Therefore I want to standardize on Markdown.
Is there a way to ...
2
votes
1answer
206 views
What markup language to store in a DB?
Related: http://stackoverflow.com/questions/492515/how-to-store-lightweight-formatting-textile-markdown-in-database
I want to store comment formatting in some markup language in our DB. However, we ...
1
vote
1answer
19 views
mediawiki online wysiwyg editor or preview tool
I'm looking for an online tool I can use to preview MediaWiki markup output.
Here are some examples of what I'm looking for (only these are for reST, not mediawiki):
http://rst.ninjs.org/
...
1
vote
0answers
148 views
MediaWiki markup equivalent of WMD live-previewing editor? (not WYSIWYG)
What editor like the WMD editor can be recommended, but using MediaWiki markup instead of Markdown? Our site is already using MediaWiki markup, but we want a slicker editor without changing Markup ...
0
votes
1answer
27 views
How can I use stackoverflow style markup on my blog posts?
I've gotten really used to the features StackOverflow provides while writing technical posts. My favorite features are the
4 spaces which you can use to indent a <pre> style code block
And ...
0
votes
0answers
92 views
How to introduce Showdown.js to Markdown/Wiki tables?
In Showdown we can see support for html tables, but how to introduce to it Markdown/Wiki style tables like shown here?
0
votes
1answer
44 views
Best markup for short stories on wiki-like site
For a site where users can edit anything, what's the best markup to use for writing short stories? markitup is a good candidate editor for this and supports the following markups:
Html
BBcode
...
0
votes
1answer
62 views
Django: markup - set the top heading
I am choosing between markup languages mentioned on https://docs.djangoproject.com/en/dev/ref/contrib/markup/ .
But I need one specific thing - set the top heading. By default, there is h1 the first ...
0
votes
0answers
87 views
How does markdown work? [closed]
Possible Duplicate:
How would you go about parsing markdown?
I am very interested in learning how Markdown parsing works, especially how it can turn
heading
=======
into ...
0
votes
5answers
425 views
preg_replace only OUTSIDE tags ? (… we're not talking full 'html parsing', just a bit of markdown)
What is the easiest way of applying highlighting of some text excluding text within OCCASIONAL tags "<...>"?
CLARIFICATION: I want the existing tags PRESERVED!
$t =
preg_replace(
...