Sometimes it may be useful to transform markdown to pure text (for sending in e-mail for instance).

Does any of these libraries support this functionality? (I'm actually more insterested in MarkdownSharp)

EDIT

Responding to Jorn's comment. I'll clarify what I expect from this kind of conversion:
Markdown has special characters that, depending on context, only have formatting meaning. The **,=,- characters for instance. It would be nice if I could clear the text from formatting characters.

I'm not sure what would be the best approach and what characters should be eliminated, nor I know what to do with links for instance, but I think someone might have done something in this sense before.

EDIT 2

Found a good example: Stackoverflow uses this kind of markdown clearing in the "Questions" list. I'm quite sure it clears the markdown formatting before rendering the question content brief, otherwise it would contain line breaks, strongs, H1s and so forth.

EDIT 3

I agree to John. The best solution seems to be to convert from markdown to HTML and then strip the resulting HTML.

And this task seems to be already solved: http://stackoverflow.com/questions/1349023/how-can-i-strip-html-from-text-in-net

link|improve this question

68% accept rate
Isn't the whole idea behind Markdown, that the input is "pure text"? What kind of transformations would you expect the library to do in a "Markdown to pure text" conversion? – Jørn Schou-Rode Jan 17 '10 at 14:11
@Jorn: I edited the question with regard to your comment. – André Pena Jan 17 '10 at 14:16
I still believe that the philosophy is that the "markup" in Markdown (no pun intended) is supposed to be human readable and value adding even in a text only environment. A *big* bowl of petunias - that's actually how I would emphasize a word in an email for instance. – Jørn Schou-Rode Jan 17 '10 at 14:20
If you are not comfortable with the syntax used in Markdown, you might want to consider one of the competitors, eg Textile: en.wikipedia.org/wiki/Textile_(markup_language) – Jørn Schou-Rode Jan 17 '10 at 14:23
@Jorn: I appreciate your attention but I do not quite agree. I'm totally happy with markdown. But happens that in particular situations I'd like to clear the text from it. See my EDIT 2 for a good known example. – André Pena Jan 17 '10 at 14:25
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

If you just want to retain the original text, then simply don't pass it to Markdown.

Markdown is for one thing only: turning Markdown-formatted text into HTML. If you want Markdown to format it in something other than HTML with a different set of transformation rules, then alas, you'll have to write your own transformer.

If you want to get the "text-only" version of already-HTML-formatted Markdown, you can just strip the HTML tags. This is what StackOverflow does.

link|improve this answer
My problem is that the original text is passed in as markdown by the end user – André Pena Jan 17 '10 at 14:17
Agreed. I edited the question btw. Thank you! – André Pena Jan 17 '10 at 14:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.