fix markdown table

This commit is contained in:
Diomede 2021-05-19 21:22:37 +02:00
parent 47ae5639a5
commit edb5f4e9f8

View file

@ -52,14 +52,14 @@ But other than that, you can use all the basic [tags](https://liquidjs.com/tags/
Other than the classic, `date`, `time` and `title` variable you also have:
| Name | Description |
| --- | --- |
| default_date_format | The date format that you have specified in the plugin settings and can be used like this: `{{ "now" | date: default_date_format }}` |
| default_time_format | The time format that you have specified in the plugin settings and can be used like this: `{{ "now" | date: default_time_format }}` |
| Name | Description |
| ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| default_date_format | The date format that you have specified in the plugin settings and can be used like this: <code>{{ "now" &#124; date: default_date_format }}</code> |
| default_time_format | The time format that you have specified in the plugin settings and can be used like this: <code>{{ "now" &#124; date: default_time_format }}</code> |
## Roadmap
For now, this plugin just includes the basic version of LiquidJS, but I want to extend it to allow:
- [ ] Parse a selected template string, something like you select `{{ "dQw4w9WgXcQ" | youtube_iframe }}` run a command and end up with the parsed result, in this case, the youtube iframe. (the `youtube_iframe` tag does not exist yet)
- [ ] Implement/install a filter that allows you to write {{ 1 | days_ago | date: default_date_format }}
- [ ] Implement/install a filter that allows you to write `{{ 1 | days_ago | date: default_date_format }}`