Skip to content

Commit

Permalink
Update 2024-08-13-logseq-customisation-for-project-management-teampla…
Browse files Browse the repository at this point in the history
…te.md

Curly Bracket not showing correctly in code block.
  • Loading branch information
pubmania authored Aug 13, 2024
1 parent c396661 commit ad20958
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -568,16 +568,19 @@ table th {
:commands []
```
- and replace above with:
{: .notice--info}
If you will copy and paste the code below please make suere that you remove the `white space` between the curly brackets, so `{ { ` should become `{{` and ` } }` should become `}}`


```
;; Add custom commands to the command palette
;; To quickly call these commands, just type / (backslash) followed by characters in square bracket
;; also if in the code below you are seeing forward slash followed by curly bracket, please remove the forward slash for these commands to work properly
:commands [
["bookmark [.b]" [[:editor/input "\{\{renderer :template, Bookmark\}\}" ]]],
["date_today [dt]" [[:editor/input "\{\{renderer :template, Date Today\}\}" ]]],
["issue_table [.it]" [[:editor/input "\{\{renderer :template, Issue_table\}\}" ]]],
["issue [.is]" [[:editor/input "\{\{renderer :template, Issue\}\}" ]]],
["circle [.c]" [[:editor/input "\{\{renderer :template-view, circle-template, :color orange\}\}" ]]],
["bookmark [.b]" [[:editor/input "{ { renderer :template, Bookmark } }" ]]],
["date_today [dt]" [[:editor/input "{ { renderer :template, Date Today } }" ]]],
["issue_table [.it]" [[:editor/input "{ { renderer :template, Issue_table } }" ]]],
["issue [.is]" [[:editor/input "{ { renderer :template, Issue } }" ]]],
["circle [.c]" [[:editor/input "{ { renderer :template-view, circle-template, :color orange } }" ]]],
["Blue Highlighter [=b]" [[:editor/input "<mark class='blue'></mark>" {:backward-pos 7}]]],
["Green Highlighter [=g]" [[:editor/input "<mark class='green'></mark>" {:backward-pos 7}]]],
["Gray Highlighter [=gra]" [[:edior/input "<mark class='gray'></mark>" {:backward-pos 7}]]],
Expand Down

0 comments on commit ad20958

Please sign in to comment.