Fix pragma procedure docs

See #7412 - thanks @kookma
This commit is contained in:
jeremy@jermolene.com 2023-04-23 10:29:15 +01:00
parent e33a65a139
commit 1cac177211
1 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ For example:
``` ```
\procedure sayhi(name:"Bugs Bunny") \procedure sayhi(name:"Bugs Bunny")
Hi, I'm $name$. Hi, I'm <<name>>.
\end \end
<<sayhi "Jeremy">> <<sayhi "Jeremy">>
@ -37,7 +37,7 @@ Hi, I'm $name$.
Alternatively, the entire definition can be presented on a single line without an `\end` marker: Alternatively, the entire definition can be presented on a single line without an `\end` marker:
``` ```
\procedure sayhi(name:"Bugs Bunny") Hi, I'm $name$. \procedure sayhi(name:"Bugs Bunny") Hi, I'm <<name>>.
``` ```
Procedure definitions can be nested by specifying the name of the procedure in the `\end` marker. For example: Procedure definitions can be nested by specifying the name of the procedure in the `\end` marker. For example:
@ -47,7 +47,7 @@ Procedure definitions can be nested by specifying the name of the procedure in t
<$action-sendmessage $message="tm-notify" $param="HelloThere"/> <$action-sendmessage $message="tm-notify" $param="HelloThere"/>
\end actions \end actions
<$button actions=<<actions>>> <$button actions=<<actions>>>
$caption$ <<caption>>
</$button> </$button>
\end special-button \end special-button