Hello,
is there a plugin for editing text (MarkDown Git style)
or any other means with 'Code::Block' ?
Cordially
Edit Markdown text?
I don't know, I only know that the new Doxygen support markdown style comments
Thanks you,
I wanted to avoid using a program like 'MarkdownPad2' for Window ...
There are two things that cb could do for you:
1. provide syntax highlight
2. allow you to run a tool that renders the text in markdown.
I'm not sure if 1 is possible, someone should inspect the scintilla's docs if it has a markdown lexer.
Two is already possible with Tools or Tools+, you just need to find a markdown renderer.
Anything else is outside of the scope of an IDE - a tool for writing code, not formatted text documents!
@oBFusCated
thank you,
Yes markdown lexer exists in C::B :
Scilexer.h -> #define SCLEX_MARKDOWN 98
but no 'lexer_markdown.xml'.
I'll look it is easy to get highlighted.
What would be the closest language ?
Have you read this: http://wiki.codeblocks.org/index.php?title=Creating_a_custom_lexer_for_Code::Blocks_editor ?
yes, of course.