| Author | DaveJarvis <email> |
|---|---|
| Date | 2025-08-30 12:17:15 GMT-0700 |
| Commit | 702ac989e386a5cd3eea1c99987eddd779a923ae |
| Parent | aa611db |
| ``` | ||
| -To reference a variable, type in the key name enclosed within double braces, such as: | ||
| +Reference a variable using the key name enclosed in double braces: | ||
| ``` | ||
| -The novel "{{novel.title}}" is one of the most widely read books in the world. | ||
| +The novel "{{novel.title}}" is a widely read book. | ||
| ``` | ||
| The preview pane shows: | ||
| -> The novel "Diary of Anne Frank" is one of the most widely read books in the world. | ||
| +> The novel "Diary of Anne Frank" is a widely read book. | ||
| -As it is laborious to type in variable names, it is possible to inject the variable name using autocomplete. Accomplish this as follows: | ||
| +Typing variable names is laborious. Use autocomplete to inject variable names as follows: | ||
| 1. Create a new file. | ||
| The preview pane shows: | ||
| -``` | ||
| -Diary of Anne Frank | ||
| -``` | ||
| +> Diary of Anne Frank | ||
| The variable name is inserted into the document and the preview pane shows the variable's value. | ||
| ```markdown | ||
| - | ||
| + | ||
| -:: Figure Caption Text | ||
| +:: Figure caption text | ||
| ``` | ||
| ### Table | ||
| -Tables can also be captioned in a similar manner, placing the caption immediately after the table: | ||
| +Tables can be captioned in a similar manner, placing the caption immediately after the table: | ||
| ```markdown | ||
| | a | b | c | | ||
| |---|---|---| | ||
| | 1 | 2 | 3 | | ||
| | 4 | 5 | 6 | | ||
| | 7 | 8 | 9 | | ||
| -:: Table Caption Text | ||
| +:: Table caption text | ||
| ``` | ||
| ### Equation | ||
| Equations receive captions the same way, following the displayed equation: | ||
| ```markdown | ||
| $$E = mc^2$$ | ||
| -:: Equation Caption | ||
| +:: Equation caption text | ||
| ``` | ||
| In [@fig:animal], a cute animal is shown. | ||
| - | ||
| + | ||
| -:: World's Cutest Animal {#fig:animal} | ||
| +:: World's cutest animal {#fig:animal} | ||
| There is no cuter animal than the one in [@fig:animal]. | ||
| Delta | 12 lines added, 14 lines removed, 2-line decrease |
|---|