all repos — hastyscribe @ df89b8a8ef28e091ca1b7920331580d220bf4b83

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
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
% 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), ... 

### Links

[H3RALD.com](https://h3rald.com)

[h3rald@h3rad.com](mailto://h3rald@h3rald.com)

[@h3rald](https://twitter.com/h3rald)

[fabiocevasco](http://it.linkedin.com/in/fabiocevasco)

### 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
test 3
: 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.

### Tip

> %tip%
> Tip
> 
> This is a tip.


### Warnings

> %warning%
> Warning
> 
> 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

* [Do Something](class:todo)
* [Do something](class:fixme) 
* [This is a comment](class:draftcomment)
* [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:square) [yes!](class:check)
* [locked](class:lock) [unlocked](class:unlock)
* [bug](class:bug)
* [tomorrow](class:date)
* [tag](class:tag)
* [test.txt](class:attachment)
* [100](class:eur) [100](class:gbp) [100](class:usd) [100](class:rub) [100](class:jpy) [100](class:btc) [100](class:try) [100](class:krw) [100](class:inr)

---