This is the markup guide for the plain/text converter.
You can post articles in your newsreader in plain/text with the following markups and it will be displayed as html in the web-forum. Also it will convert any web-forum articles back into plain/text.
Markup Guide
built-in
Here is a list of markups which will be converted:
- *bold*
- /italic/
- _underline_
- Blockquotes will be automatically generated from "> " at the beginning of lines
- Code Tags for formatting source code: [c#]...[/c#], [cpp]...[/cpp], [vbnet]...[/vbnet], [sql]...[/sql], [html]...[/html], [code]...[/code], [code=cpp]...[/code]; you should write the code-tags an a separate line!
- Links beginning with http.. will automatically be converted into clickable links on the forum
user-defined
Configuration
- Open Advanced Settings Dialog
- Open UserDefinedTag Collection Editor
- Insert or edit items
TagName: Name of tag (e. g. KB)
HtmlText: Replacement for html view in the forum
Examples TagName: CSFAQ
HtmlText : <a href="http://www.andymcm.com/csharpfaq.htm#{TEXT}">FAQ {TEXT}</a>
Text in newsreader: [CSFAQ]1.1[/CSFAQ]
Text in forum (html-source): <a href="http://www.andymcm.com/csharpfaq.htm#1.1">FAQ 1.1</a>
TagName: MSDN
HtmlText : <a href="http://msdn.microsoft.com/en-us/library/{TEXT1}">MSDN: {TEXT2}</a>
Text in newsreader: [MSDN=kx37x362]Visual C#[/MSDN]
Text in forum (html-source): <a href="http://msdn.microsoft.com/en-us/library/kx37x362">MSDN: Visual C#</a>
TagName: IMG
HtmlText : <img src="{TEXT}" />
Text in newsreader: [IMG]http://www.example.com/image.png[/IMG]
Text in forum (html-source): <img src="http://www.example.com/image.png" />