Already have HastyMarkup? Here to learn about the gizmo? Continue Reading...
Align Left
<div class="pull-left"></div> |
Purpose: Insert a div layer that floats all content to the left.
Editor View:
<div class="pull-left">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.
</div>
Preview:
Align Center
<center></center> |
Purpose: Insert center tags that align contents to the center of page. Hotstring 'c' will insert starting and ending tags <center></center>
'cs' will insert start tag only <center>
'ce' will insert end tag only </center>
Editor View:
<center>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.</center>
Preview:
Align Right
<div class="pull-right"></div> |
Purpose: Insert a div layer that floats all content to the right.
Editor View:
<div class="pull-right">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.
</div>
Preview:
Img Float Left
see editor view |
Purpose: Shortcut to insert an image within a div float left. Pulls image to left side of screen and if image is small enough, allows text and other content to wrap around.
Editor View:
Preview:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus.
Img Float Right
see editor view |
Purpose: Shortcut to insert an image within a div float right. Pulls image to right side of post and if image is small enough, allows text and other content to wrap around.
Editor View:
Preview:
Img Centered
see editor view |
Purpose: Shortcut to insert an image within center tags. Text and other content does not wrap around.
Editor View:
Preview:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Image
Purpose: Insert an image.
Editor View:
Preview:
Image w/ Source
see editor view |
Purpose: Insert an image with source citation under it.
Editor View:
Preview:
Photo by Teddy Kelley on Unsplash
Link
<a href=""></a> |
Purpose: Insert a text based link to a web accessible address.
Editor View:
<a href="Link Url Here">Link Text Here</a>
Preview:
Link Image
see editor view |
Purpose: Nest an image within a link.
Editor View:
Text-Justify
<div class="text-justify"></div> |
Purpose: Insert a div layer that formats text so that each line has equal width (like in newspapers and magazines.)
Editor View:
<div class="text-justify">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.
</div>
Preview:
Bold
<b></b> |
Purpose: Specifies bold text.
Editor View:
<b>Lorem ipsum</b>
Preview:
Lorem ipsum
Emphasis
<em></em> |
Purpose: Specifies emphasized (italic) text.
Editor View:
<em>Lorem ipsum</em>
Preview:
Lorem ipsum
Strikethrough
<del></del> |
Purpose: Defines text that has been deleted.
Editor View:
<del>Lorem ipsum</del>
Preview:
Lorem ipsum
Subscript
<sub></sub> |
Purpose: Defines subscript text. Subscript text appears half a character below the normal line. Can be used multiple times to make smaller text, can also be nested inside headings to reduce size. <h1><sub></sub></h1>
Editor View:
C<sub>6</sub>H<sub>12</sub>O<sub>6</sub>
Preview:
C6H12O6
Superscript
<sup></sup> |
Purpose: Defines superscript text. Superscript text appears half a character above the normal line. Useful for making footnotes. Can be used multiple times to make smaller text, can also be nested inside headings to reduce size. <h1><sup></sup></h1>
Editor View:
1<sup>st</sup> 2<sup>nd</sup> footnote<sup>[1]</sup> statement<sup>[clarification needed]</sup>
Preview:
1st 2nd footnote[1] statement[clarification needed]
Preformatted
<pre></pre> |
Purpose: Defines preformatted text. It preserves both spaces and line breaks and applies a courier font.
Editor View:
<pre>
P R E F O R M A T T E D
1
2
3
</pre>
Preview:
P R E F O R M A T T E D 1 2 3
Headings
<h1></h1> |
Purpose: Define heading text of various sizes ranging from 1 to 6. Sizes can be modified by nesting Subscript or Superscript. (right click to insert within a center tag)
Editor View:
<h3>Lorem ipsum</h3>
Preview:
Lorem ipsum
Unordered List
<ul><li></li></ul> |
Purpose: Creates an unordered list. To insert another list item click the "List Item" icon. For hotstrings see: Special Hotstrings
Editor View:
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
</ul>
Preview:
- List Item 1
- List Item 2
Ordered List
<ol><li></li></ol> |
Purpose: Creates an ordered list. To insert another list item click the "List Item" icon. For hotstrings see: Special Hotstrings
Editor View:
<ol>
<li>List Item 1</li>
<ol><li>sub ordered list</li><li>sub ordered list</li></ol>
<li>List Item 2</li>
<ul><li>sub unordered list</li><li>sub unordered list</li></ul>
</ol>
Preview:
- List Item 1
- sub ordered list
- sub ordered list
- List Item 2
- sub unordered list
- sub unordered list
List Item
<li></li> |
Purpose: Adds another list item to an ordered or unordered list. For hotstrings see: Special Hotstrings
Editor View:
<ol>
<li>one</li>
<li>two</li>
<li>three</li>
</ol>
Preview:
- one
- two
- three
Codeblock
``` |
Purpose: Creates a code block to display code and preformatted text.
Editor View:
```
in the line above and below the contents of your code or preformatted text.
Preview:
### Heading 3
<center></center>
<script>
steem.api.getDiscussionsByBlog()
</script>
Code In-line
`` |
Purpose: Creates an in-line area for code and text - has a highlight effect which becomes more distinct when night-mode is toggled.
Editor View:
Lorem ipsum dolor sit amet, `consectetuer` adipiscing
`<div class="pull-left"></div>` elit. `function()`
Preview:
Lorem ipsum dolor sit amet, consectetuer
adipiscing
<div class="pull-left"></div>
elit. function()
Code Tag
<code></code> |
Purpose: Same as in-line code but provides some compatibility between markup and markdown.
Editor View:
<div class="pull-right"><code>``` in-line code ```</code></div>
Preview:
``` in-line code ```
Quote Block
<blockquote></blockquote> |
Purpose: Insert a quote block.
Editor View:
<blockquote>"Those who cannot remember the past are condemned to repeat it." - George Santayana</blockquote>
Preview:
"Those who cannot remember the past are condemned to repeat it." - George Santayana
TablesMarkdown
see editor view |
Purpose: Creates Markdown tables. Use the drop-down C1-C8 where number specifies column count, first icon inserts table heading and first row, second icon inserts additional rows (insert new rows when editing the last table cell.)
Editor View:
|Heading C1|Heading C2|Heading C3|
|-|-|-|
|Row C1|Row C2|Row C3|
Preview:
Heading C1 | Heading C2 | Heading C3 |
---|---|---|
Row C1 | Row C2 | Row C3 |
TablesMarkup
see editor view |
Purpose: Creates Markup Tables. Added for compatibility and special properties/options that Markdown Tables do not provide. Use the same drop-down as Markdown Tables, but right click insert icons. C1-C8 number specifies column count, first icon inserts table header, second icon inserts a row (insert new rows when editing the last table cell.) See: Special Hotsrings
Editor View:
<table>
<tr>
<th>Heading C1</th>
<th>Heading C2</th>
<th>Heading C3</th>
</tr>
<tr>
<td>Row C1</td>
<td>Row C2</td>
<td>Row C3</td>
</tr>
</table>
Preview:
Heading C1 | Heading C2 | Heading C3 |
---|---|---|
Row C1 | Row C2 | Row C3 |
Insert Space
   |
Purpose: Insert a non-breaking space. Adds extra horizontal spacing between text and elements. For example, they can be used to force table column width. Left click icon to insert
Right click to insert  
(ctrl+alt while [L or R] clicking to insert at increments of 5.)
Editor View:
Preview:
Lorem ipsum
Line Break
<br> |
Purpose: Inserts a line break. Works no matter the line feed within the editors textarea. (ctrl+alt while clicking to insert at increments of 2.)
Editor View:
Lorem<br>ipsum
Preview:
Lorem
ipsum
Horizontal Rule
<hr> |
Purpose: Inserts a horizontal rule.
Editor View:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.<hr>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Preview:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Page Dividers
Purpose: Inserts a graphic based page divider. Select style from the drop-down, then press the clipboard icon to insert. Click the gear icon to edit your page dividers in notepad (or your default editor for ini file extension.) Read the instructions in the file to learn how to add/reorder/modify page dividers. Remember to save file, then reload HastyMarkup.
(press: CTRL+ +R)
Page Dividers by @odrau terms:
[You may]
-Use in steem post (commercially) without attribution - although it is appreciated.
[You may not]
-Adapt, remix, transform, and build upon the material to sell or redistribute as your own.
To view starter pack included with hastymarkup by default: Starter Pack
More page dividers coming soon, so follow me! For updates check out: hasty.tools
Snippets
Your Code |
Purpose: Snippets allow you to store your repetitive code and text. Think of Snippets as permanent variable clipboards. Select snippet from the drop-down, then press the clipboard icon to insert. Click the gear icon to edit your snippets in notepad (or your default editor for ini file extension.) Read the instructions in the file to learn how to create/modify snippets. Remember to save file, then reload HastyMarkup.
(press: CTRL+ +R)
Tools
None |
Purpose: Provide useful tools for Steemit content creators.
Ty <3
Thank You ~odrau
📌 Reference was made for HastyMarkup v1.
With newer versions things may have changed.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit