mirror of
https://github.com/oen/liquid-template.git
synced 2026-07-22 05:40:24 +00:00
fix markdown table
This commit is contained in:
parent
47ae5639a5
commit
edb5f4e9f8
1 changed files with 5 additions and 5 deletions
10
README.md
10
README.md
|
|
@ -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" | 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" | 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 }}`
|
||||
Loading…
Reference in a new issue