Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
Markdown filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastien Miclo committed Mar 22, 2016
0 parents commit 7f4d1c4
Show file tree
Hide file tree
Showing 13 changed files with 1,445 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
composer.phar
/vendor/

# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# jade-filter-markdown

Implement parsers from https://github.com/cebe/markdown to make **markdown**
available as a jade-php filter.

```jade
section
:markdown
![example image](example-image.jpg "An exemplary image")
```

Filters:
- :markdown
- :github-markdown
- :inline-github-markdown
- :markdown-extra
25 changes: 25 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "kylekatarnls/jade-filter-mardown",
"description": "Markdown filter for Jade-php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kyle Katarn",
"email": "kylekatarnls@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"kylekatarnls/jade-php": "^1.8",
"cebe/markdown": "^1.1"
},
"require-dev": {
"phpunit/phpunit": ">=4.0"
},
"autoload": {
"psr-0": {
"Jade": "src/"
}
}
}

0 comments on commit 7f4d1c4

Please sign in to comment.