fix command doc formating

This commit is contained in:
marshmallow 2023-06-25 16:48:32 +10:00
parent 40df3816a0
commit a50fb7540a
No known key found for this signature in database
GPG key ID: 767B8880F5AAEB9C

View file

@ -38,51 +38,35 @@ you to add anything extra to your ~init.el~.
All commands accept a ~!~ to skip confirmation. All commands accept a ~!~ to skip confirmation.
*** ~:OrgExecute~ *** ~:OrgE[xecute]~
Evaluates every block in buffer.
See [[https://orgmode.org/manual/Working-with-Source-Code.html][Working with See [[https://orgmode.org/manual/Working-with-Source-Code.html][Working with
Source Code]] in the org manual. Source Code]] in the org manual.
#+begin_src *** ~:{range}OrgE[xecute]~
:OrgE[xecute]
#+end_src
Evaluates every block in buffer.
#+begin_src
:{range}OrgE[xecute]
#+end_src
Evaluate every block in range. Evaluate every block in range.
#+begin_src *** ~:OrgE[xecute] [name]~
:OrgE[xecute] [name]
#+end_src
Evaluate ~[name]~ block. Evaluate ~[name]~ block.
*** ~:OrgTangle~ *** ~:OrgT[angle]~
Tangles whole file.
See [[https://orgmode.org/manual/Extracting-Source-Code.html][Extracting Source See [[https://orgmode.org/manual/Extracting-Source-Code.html][Extracting Source
Code]] in the org manual. Code]] in the org manual.
#+begin_src *** ~:{range}OrgT[angle]~
:OrgT[angle]
#+end_src
Tangles whole file.
#+begin_src
:{range}OrgT[angle]
#+end_src
Tangles all blocks in range. If the range is NOT ~%~, the tangled file will Tangles all blocks in range. If the range is NOT ~%~, the tangled file will
likely only contain the contents of the last block, which is expected likely only contain the contents of the last block, which is expected
behaviour. behaviour.
#+begin_src *** ~:OrgT[angle] [name]~
:OrgT[angle] [name]
#+end_src
Tangles ~[name]~ block. Tangles ~[name]~ block.