Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devtoolscz/markdown
Latte Markdown Syntax
https://github.com/devtoolscz/markdown
latte nette
Last synced: 26 days ago
JSON representation
Latte Markdown Syntax
- Host: GitHub
- URL: https://github.com/devtoolscz/markdown
- Owner: DevToolsCZ
- License: gpl-3.0
- Created: 2020-12-20T12:04:34.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-24T04:03:10.000Z (4 months ago)
- Last Synced: 2024-10-10T20:01:11.039Z (26 days ago)
- Topics: latte, nette
- Language: PHP
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### devtoolscz/markdown
**Introduction**
Parsedown/Markdown is easy syntax language for formating text like a texy.
Library is created for Nette Framework, Latte Templates.**Versions**
| STATE | VERSION | BRANCH | NETTE | PHP |
| :------------: | :------------: | :------------: | :------------: | :------------: |
| Stable | v1.0 | master | 3.0 | >=7.2 |**Setup**
Recommended way to install is via composer.
> composer require devtoolcz/markdown```yaml
extensions:
markdown: Devtoolcz\Markdown\Nette\DI\MarkdownExtension
```**Configuration**
```yaml
markdown:
syntax_helper: parsedown
```
**Usage**
```smarty
{block content}
{var $text_test = 'Tohle je test. Je __skvělý__'}
{$text_test|parsedown}
{/block}
```