Smart.Editor Markdown

Markdown Editor

Smart.Editor is both an HTML and Markdown editor. By setting the editMode to "markdown" the Editor accepts markdown content that is parsed to HTML in Preview Mode or Split Mode. This allows the users to write markdown files and preview the result and when done simply export the content as MD file via the exportData method.

The sourceCode toolbar item by default is used to switch to source code view when the editMode is set to 'HTML' or switch to markdown preview view when the editMode is "markdown". The item is added to the toolbarItems list by default but if the user is using a custom items list it can simply be added it to the list. The SourceCode/Preview View can also be triggered via an API method called previewMode(value?: boolean) like so:

document.querySelector('smart-editor').previewMode();

The splitMode toolbar item allows the users to write markdown while previewing the HTML output live. In split mode the Editor content is split in two halves in order to view both Markdown and HTML output at the same time. The Split mode can also be triggered via an API method called splitMode(value?: boolean) like so:

document.querySelector('smart-editor').splitMode();

An optional boolean argument can be passed to the methods in order to specify whether the mode is on or off. If no argument is applied the mode is toggled.

Documentation content sections:

Demo

Editor Markdown

The following is a list of all supported Markdown commands.

Commands Syntax Description
Bold **bold text ** For bold add ** or __ before and after the text.
Italic *Italic text* For Italic add * or _ before and after the text.
Bold and Italic ***bold and Italic text*** For bold and Italic, add *** before and after the text.
Heading 1 # Heading 1 For heading 1, add # to the beginning of the line.
Heading 2 ## Heading 2 For heading 2, add ## to the end of the line.
Heading 3 ### Heading 3 For heading 3, add ### to the beginning of the line.
Heading 4 #### Heading 4 For heading 4, add #### to the beginning of the line.
Heading 5 ##### Heading 5 For heading 5, add ##### to the beginning of the line.
Heading 6 ###### Heading 6 For heading 6, add ###### to the beginning of the line.
Line Break <br> For line break, press enter two times (or) add <br>.
Blockquotes > Blockquotes For blockquotes, add > to the beginning of the line.
Strike Through ~~Strike through text~~. For strike through, add ~~ before and after the text.
Code (Single line) `Single line code` For single line code, add ` before and after the text.
Code block (Multi Line) ```
Multi line code text
Multi line code text
```
For multiple line code, add ``` in the new line before and after the content.
Subscript <sub>Subscript text</sub> For subscript, add <sub> before and </sub> after the text.
Superscript <sup>Superscript text</sup> For superscript, add <sup> before and </sup> after the text.
Ordered List 1. First
1. Second
For ordered list, preceding one or more lines of text with 1.
Unordered List * First
* second
For unordered list, preceding one or more lines of text with *.
Links Link text with title text
[ Link text ](URL , “title text”)
Create an inline link by surrounding link text in brackets [ ] and then surrounding the URL as first parameter and title as second parameter in the parentheses ().
Note: The title text is optional.
Table | Heading 1 | Heading 2 |
|---------|---------|
| Col A1 | Col A2 |
| Col B1 | Col B2 |
Create a table using the pipes and underscores as given in the syntax to create 2 x 2 table.
Horizontal Line *** (three asterix in new line)
(or)
___ (three underscores in new line)
For horizontal line, add *** or ___ to the beginning of the new line.
Image ![](URL path) Create an image by wrapping the image source in parentheses ().
Image with alternate text ![ alternate text ](URL path) Create an image with alternate text by surrounding an alternative text in brackets [], and then link of the image source in parentheses ().
Escape tick marks supported Sample text content with **bold and **not bold** text can be in the same line.** In the syntax, the whole content is made as bold where the content not bold can be made as normal text by adding the bold syntax to the start and end of the respective text. Likewise you can do the same for various inline commands.
Escape Character \(any syntax) Escape any markdown syntax by prefixing with \ to the syntax.
Example:
\**Bold text**
HTML Entities Copyright: © - &copy;
Trade mark: ™ - &trade;
Registered: ® - &reg;
Ampersand: & - &amp;
Less than: < - &lt;
Greater than: > - &gt;
For HTML entities, add & and ; before and after the respective entities.

Markdown Export

Editor's markdown content can be exported to md file at any time via the exportData method. In order to export to md file the method must be called with the appropriate parameter, like so:

document.querySelector('smart-editor').exportData('md');

The HTML output from the markdown content can be printed via the print method, like so:

document.querySelector('smart-editor').print();