habitica-markdown
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "habitica-markdown", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A markdown-it module pre-configured for use in Habitica", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -32,1 +32,23 @@ # habitica-markdown | ||
* Images automatically turn into links with [markdown-it-linkify-images](https://www.npmjs.com/package/markdown-it-linkify-images) | ||
* Markdown parsed by [markdown-it-emoji](https://github.com/markdown-it/markdown-it-emoji) | ||
## Notes | ||
### Emoji | ||
The emoji come pre-styled with: | ||
```css | ||
.habitica-emoji { | ||
height: 1.5em; | ||
width: 1.5em; | ||
} | ||
``` | ||
If you'd like to override these values, you may need to apply the `!important` keyword to your `css`. | ||
```css | ||
.habitica-emoji { | ||
height: 100px !important; | ||
} | ||
``` |
3847
54