Skip to content

Commit 738aee1

Browse files
committed
Update README.md
1 parent 629940e commit 738aee1

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

README.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,26 @@
1-
# markdown
2-
Latte Markdown Syntax
1+
### devtoolscz/markdown
2+
3+
**Introduction**
4+
Parsedown/Markdown is easy syntax language for formating text like a texy.
5+
6+
**Setup**
7+
Recommended way to install is via composer.
8+
> composer require devtoolcz/markdown
9+
10+
```yaml
11+
extensions:
12+
markdown: Devtoolcz\Markdown\Nette\DI\MarkdownExtension
13+
```
14+
15+
**Configuration**
16+
```yaml
17+
markdown:
18+
syntax_helper: parsedown
19+
```
20+
**Usage**
21+
```smarty
22+
{block content}
23+
{var $text_test = 'Tohle je test. Je __skvělý__'}
24+
{$text_test|parsedown}
25+
{/block}
26+
```

0 commit comments

Comments
 (0)