all repos — hastyscribe @ b6121e0811b06fab4e21acdf4d85dc8bdae06550

A professional markdown compiler.

test/test.md

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
% HastyScribe Test Document
% Fabio Cevasco
% -

## Inline Styles 

### Text Decorations

This is a section containing some text decorations, like **bold**, *italic*, ~~strikethrough~~, and `preformatted text`. 

### SmartyPants substitutions

(TM), (R), 1/4, 1/2, ---, --, A^(B+2), ... 

### Other HTML inline styles

* kbd: <kbd>CTRL</kbd>+<kbd>C</kbd>
* mark: The following is <mark>marked</mark>.
* samp: The program displays: <samp>This is a test.</samp>
* var: Set the variable <var>test</var> to 1.
* abbr: [HTML](abbr:Hypertext Markup Language)
* q: <q>This is a short quotation</q>
* cite: <cite>Hamlet</cite>, by William Shakespeare.
* tt: <tt>test</tt>

## Lists

This section contains some lists.

### Ordered Lists

1. First item
2. Second item
3. Third item

### Alphabetical Lists

a. First item
b. Second item
c. Third item

### Unordered Lists

* An item
* Another item
* And another...

### Definition Lists

test
: Test definition
test 2
: Another test definition


## Block Styles

### Codeblock

```
$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});
```

### Blockquote

> This is a block quote.
> > This is a nested quote. 

### Notes

> %note%
> Note
> 
> This is a note.


### Warnings

> %warning%
> Important
> 
> This is an important note.

### Sidebars

> %sidebar%
> This is a _sidebar_
> 
> Although not always placed on the side of the page, _sidebars_ contain additional content and asides.

### Addresses

<address>
Written by <a href="mailto:webmaster@example.com">Jon Doe</a>.<br> 
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>

### Tables

| Test | Test... |
|------|---------|
|sdgsag|fdgsdh d |
| fds  | fdhdfsh |

## Badges

* [](class:todo) Do something.
* [](class:fixme) Do something.
* [Red circle](class:red-circle) [Yellow circle](class:yellow-circle) [Green circle](class:green-circle) [Gray circle](class:gray-circle)
* [](class:star) [](class:heart) 
* [no](class:cross) [yes!](class:check)

## Links

* Internal Link: [Lists](#Lists)
* External Link: [H3RALD.com](http://h3rald.com)
* Telephone: [+1 353 6326](tel://+13536326)
* Auto External Link: <http://www.google.com>
* Auto Email Link: <h3rald@h3rald.com>

---