User Tools

Site Tools


markdownparser

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
markdownparser [2019/09/06 10:40]
bloguintosh
markdownparser [2019/09/06 12:05]
bloguintosh
Line 2: Line 2:
  
 This un-encripted 100% Xojo code class with access to the source code, gives Xojo developers the ability to parse Markdown to HTML + CSS instantly! Use the markdown text as the source for the class instance and get the HTML with the CSS styles on the fly, so you get the visually enriched HTML ready to use or for additional purposes in your project, thanks to the flexibility provided by HTML! This un-encripted 100% Xojo code class with access to the source code, gives Xojo developers the ability to parse Markdown to HTML + CSS instantly! Use the markdown text as the source for the class instance and get the HTML with the CSS styles on the fly, so you get the visually enriched HTML ready to use or for additional purposes in your project, thanks to the flexibility provided by HTML!
 +
 +===== Markdown Parser in the Store =====
 +
 +You can buy your Markdown Parser License in the AprendeXojo Store [[https://​www.aprendexojo.com/​en/​shop/​markdown-parser-for-xojo-full-source-code/​|using this link]].
  
 ===== Main Features ===== ===== Main Features =====
Line 44: Line 48:
 <​nowiki>​ <​nowiki>​
 Text with inline-style `code` Text with inline-style `code`
 +</​nowiki>​
  
 +<​nowiki>​
  ``` Use three back-ticks to surround a block of code.  ``` Use three back-ticks to surround a block of code.
 Like this one. ``` Like this one. ```
Line 53: Line 59:
 <​nowiki>​ <​nowiki>​
 **text** (Two asterisk characters followed by text, with two asterisks at the end) **text** (Two asterisk characters followed by text, with two asterisks at the end)
 +</​nowiki>​
  
 +<​nowiki>​
 __text__ (Two underline characters followed by text, with two underlines at the end) __text__ (Two underline characters followed by text, with two underlines at the end)
 </​nowiki>​ </​nowiki>​
Line 61: Line 69:
 <​nowiki>​ <​nowiki>​
 # h1 # h1
 +</​nowiki>​
  
 +<​nowiki>​
 ## h2 ## h2
 +</​nowiki>​
  
 +<​nowiki>​
 ### h3 ### h3
 +</​nowiki>​
  
 +<​nowiki>​
 #### h4 #### h4
 +</​nowiki>​
  
 +<​nowiki>​
 ##### h5 ##### h5
 +</​nowiki>​
  
 +<​nowiki>​
 ###### h6 ###### h6
 </​nowiki>​ </​nowiki>​
Line 77: Line 95:
 <​nowiki>​ <​nowiki>​
 ![alt text](http://​www.examplelink.com/​toImage.png "Image Text") ![alt text](http://​www.examplelink.com/​toImage.png "Image Text")
 +</​nowiki>​
  
 +<​nowiki>​
 ![alt text](http://​www.examplelink.com/​toImage.png "Image Text" =number-for-image-size) ![alt text](http://​www.examplelink.com/​toImage.png "Image Text" =number-for-image-size)
 </​nowiki>​ </​nowiki>​
Line 85: Line 105:
 <​nowiki>​ <​nowiki>​
 *text* (Asterisk character followed by text, and asterisk at the end) *text* (Asterisk character followed by text, and asterisk at the end)
 +</​nowiki>​
  
 +<​nowiki>​
 _text_ (Underline character followed by text, and underline at the end) _text_ (Underline character followed by text, and underline at the end)
 </​nowiki>​ </​nowiki>​
Line 93: Line 115:
 <​nowiki>​ <​nowiki>​
 [Text to be linked inline-style](http://​www.examplelink.com) [Text to be linked inline-style](http://​www.examplelink.com)
 +</​nowiki>​
 +
 +<​nowiki>​
 [Inline-style with Title](http://​www.examplelink.com "Title Text") [Inline-style with Title](http://​www.examplelink.com "Title Text")
 </​nowiki>​ </​nowiki>​
Line 100: Line 125:
 <​nowiki>​ <​nowiki>​
 1. (Use a number to identify the item in an ordered list) 1. (Use a number to identify the item in an ordered list)
 +</​nowiki>​
 +
 +<​nowiki>​
 *,-,+ (Unordered lists items can use any of these characters) *,-,+ (Unordered lists items can use any of these characters)
 </​nowiki>​ </​nowiki>​
Line 119: Line 147:
 <​nowiki>​ <​nowiki>​
 |text|Text|Text| (A pipe character defines columns. Repeat for every row) |text|Text|Text| (A pipe character defines columns. Repeat for every row)
 +</​nowiki>​
 +
 +<​nowiki>​
 |=| Use this character sequence to mark the previous row as the table header |=| Use this character sequence to mark the previous row as the table header
 </​nowiki>​ </​nowiki>​
markdownparser.txt ยท Last modified: 2019/09/06 12:05 by bloguintosh