Skip to content

Commit

Permalink
DOCS : Regenerated docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot committed Dec 24, 2023
1 parent 812e1a8 commit 38f6705
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Simple org mode file used with simple template.


simple.org
```simple.org
```
* A normal note
Just a note
Expand All @@ -37,7 +37,7 @@ File taxes for wife too.


simple.jinja2
```simple.jinja2
```
{% for note in root %}
{%- if note.state == "TODO" -%}
# {{ note.name }} ({% for tag in note.tags %}{{ tag }}{% endfor %})
Expand Down
4 changes: 2 additions & 2 deletions docs/public/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Simple org mode file used with simple template.


simple.org
```simple.org
```
* A normal note
Just a note
Expand All @@ -41,7 +41,7 @@ File taxes for wife too.


simple.jinja2
```simple.jinja2
```
{% for note in root %}
{%- if note.state == "TODO" -%}
# {{ note.name }} ({% for tag in note.tags %}{{ tag }}{% endfor %})
Expand Down
4 changes: 2 additions & 2 deletions docs/public/using/all-template-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ demonstrates getting:


simple.org
```simple.org
```
* TODO A todo note
About text
Expand Down Expand Up @@ -53,7 +53,7 @@ Subnote C body.


simple.jinja2
```simple.jinja2
```
{% for note in root %}
-------------------------
Name: {{ note.name }}
Expand Down
4 changes: 2 additions & 2 deletions docs/public/using/deliberate-failure.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ This lets you create templates which [fail fast](https://en.wikipedia.org/wiki/F


example.org
```example.org
```
* existent
```


example.jinja2
```example.jinja2
```
This is some text
{{ fail("this shouldn't happen") }}
Expand Down
8 changes: 4 additions & 4 deletions docs/public/using/insert.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Insert a file as a note.


org/simple.org
```org/simple.org
```
* TODO Insert before this note
* DONE Done item
Expand All @@ -20,13 +20,13 @@ org/simple.org


speech.txt
```speech.txt
```
This is a note generated by speech to text.
```


notetemplate.jinja2
```notetemplate.jinja2
```
* TODO New note
{{ text }}
Expand All @@ -35,7 +35,7 @@ notetemplate.jinja2


tmp/_
```tmp/_
```
```

Expand Down
4 changes: 2 additions & 2 deletions docs/public/using/latex-cv.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ conflicting with latex syntax.


cv.org
```cv.org
```
* details
** name
Expand Down Expand Up @@ -76,7 +76,7 @@ Increased search volume by 50%.


cv.jinja2
```cv.jinja2
```
%-----------------------------------------------------------------------------------------------------------------------------------------------%
% The MIT License (MIT)
%
Expand Down
4 changes: 2 additions & 2 deletions docs/public/using/latex-letter.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Unlike traditional jinja2, latexmode jinja2 uses different syntax to avoid confl


letter.org
```letter.org
```
* from details
** name
Expand Down Expand Up @@ -65,7 +65,7 @@ P.S. An iPhone would also be acceptable.


letter.jinja2
```letter.jinja2
```
% Thin Formal Letter
% LaTeX Template
% Version 2.0 (7/2/17)
Expand Down
4 changes: 2 additions & 2 deletions docs/public/using/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Convert chunks of orgmode text into markdown using .body.markdown.


markdown.org
```markdown.org
```
* Note title
Text with /emphasis/ and *bold* and a [[https://www.google][link]].
Expand All @@ -23,7 +23,7 @@ Text with /emphasis/ and *bold* and a [[https://www.google][link]].


markdown.jinja2
```markdown.jinja2
```
{{ root.at("Note title").body.markdown }}
```
Expand Down
6 changes: 3 additions & 3 deletions docs/public/using/module.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Don't be tempted to make it too complicated though.


note.org
```note.org
```
* Note 1
* Note 2
Expand All @@ -23,7 +23,7 @@ note.org


note.jinja2
```note.jinja2
```
{% for note in root %}
{{ to_upper(note.name) }}
{% endfor %}
Expand All @@ -32,7 +32,7 @@ note.jinja2


note.py
```note.py
```python
def to_upper(string):
return string.upper()

Expand Down
6 changes: 3 additions & 3 deletions docs/public/using/orji-run-multiple.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ With --multiple then multiple matching scripts will be run.


org/simple.org
```org/simple.org
```
* TODO Wash car :email-reminder:
Car wash.
Expand All @@ -32,7 +32,7 @@ Car wash.


org/simple2.org
```org/simple2.org
```
* Another note
* TODO File taxes :email-reminder:
Expand All @@ -45,7 +45,7 @@ File taxes for wife too.


orun/email-reminder.sh
```orun/email-reminder.sh
```bash
echo {{ note.body.oneline }}

```
Expand Down
6 changes: 3 additions & 3 deletions docs/public/using/orji-run.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If there are zero or two notes matching scripts then it will raise an error.


org/simple.org
```org/simple.org
```
* TODO An email I want to send :email:
** email
Expand All @@ -46,7 +46,7 @@ File taxes for wife too.


org/simple2.org
```org/simple2.org
```
* Another note
* Another irrelevant note.
Expand All @@ -55,7 +55,7 @@ org/simple2.org


orun/email.sh
```orun/email.sh
```bash
echo {{ note.at("body").body.oneline }}
cat {{ note.at("email").body.tempfile() }}

Expand Down

0 comments on commit 38f6705

Please sign in to comment.