Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/getgrav/grav-plugin-markdown-color
Grav Markdown Color Plugin
https://github.com/getgrav/grav-plugin-markdown-color
color grav grav-plugin markdown
Last synced: 6 days ago
JSON representation
Grav Markdown Color Plugin
- Host: GitHub
- URL: https://github.com/getgrav/grav-plugin-markdown-color
- Owner: getgrav
- License: mit
- Created: 2015-12-18T04:02:59.000Z (almost 9 years ago)
- Default Branch: develop
- Last Pushed: 2023-09-25T15:27:17.000Z (about 1 year ago)
- Last Synced: 2024-10-29T20:24:06.476Z (19 days ago)
- Topics: color, grav, grav-plugin, markdown
- Language: PHP
- Homepage: https://getgrav.org
- Size: 3.91 KB
- Stars: 8
- Watchers: 5
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Grav Markdown Color Plugin
The **markdown-color plugin** for [Grav](http://github.com/getgrav/grav) allows you to add output colored text in Markdown:
# Installation
This plugin is easy to install with GPM.
```
$ bin/gpm install markdown-color
```# Configuration
Simply copy the `user/plugins/markdown-color/markdown-color.yaml` into `user/config/plugins/markdown-color.yaml` and make your modifications.
```
enabled: true
```# Examples
```
This is {c:red}red text{/c} and this is {c:#000099}blue text{/c}.
```Will produce the following HTML:
```
This is red text and this is blue text.
```