Skip to content

Commit 136d525

Browse files
committed
improve rendering in template
1 parent b0bfa80 commit 136d525

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Build obsidian plugin
22

33
on:
44
push:
5-
branches:
6-
- master
5+
tags:
6+
- "*"
77
workflow_dispatch:
88

99
env:

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "recipe-grabber",
33
"name": "Recipe Grabber",
4-
"version": "0.16.0",
4+
"version": "0.17.0",
55
"minAppVersion": "0.15.0",
66
"description": "Quickly grab the important contents of any online recipe.",
77
"author": "seethroughdev",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "recipe-grabber",
3-
"version": "0.16.0",
3+
"version": "0.17.0",
44
"description": "Quickly grab the important contents of any online recipe.",
55
"main": "main.js",
66
"repository": {

src/constants.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ url: {{url}}
2121
### Ingredients
2222
2323
{{#each recipeIngredient}}
24-
- {{this}}
24+
- {{{this}}}
2525
{{/each}}
2626
2727
### Instructions
2828
2929
{{#each recipeInstructions}}
3030
{{#if this.itemListElement}}
31-
#### {{this.name}}
31+
#### {{{this.name}}}
3232
{{#each this.itemListElement}}
33-
- {{this.text}}
33+
- {{{this.text}}}
3434
{{/each}}
3535
{{else}}
36-
- {{this.text}}
36+
- {{{this.text}}}
3737
{{/if}}
3838
{{/each}}
3939

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"0.12.0": "0.15.0",
44
"0.13.0": "0.15.0",
55
"0.15.0": "0.15.0",
6-
"0.16.0": "0.15.0"
6+
"0.16.0": "0.15.0",
7+
"0.17.0": "0.15.0"
78
}

0 commit comments

Comments
 (0)