diff options
author | Thomas Lange <code@nerdmind.de> | 2017-05-05 03:38:19 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-05-05 03:38:19 +0200 |
commit | c1295a33bcc5de239cb7347c293c363c697c269a (patch) | |
tree | bbb3b08ae2b00e96a8dba216c7f2c5db732795d7 | |
parent | 3a8d19a5253b775fe59038a9f0d9321a4ed4a6ae (diff) | |
download | wiki-c1295a33bcc5de239cb7347c293c363c697c269a.tar.gz wiki-c1295a33bcc5de239cb7347c293c363c697c269a.tar.xz wiki-c1295a33bcc5de239cb7347c293c363c697c269a.zip |
Trying to fix a markdown formatting problem.
-rw-r--r-- | Templates.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Templates.md b/Templates.md index 937d786..fcdac06 100644 --- a/Templates.md +++ b/Templates.md @@ -191,8 +191,8 @@ Default template for error page 404 Not Found. * `$PAGE['GUID']`: Contains a pseudo-guid of the page * `$PAGE['ARGV']`: Contains the arguments parsed as key->value array * `$PAGE['FILE']['LIST']`: List of extracted image URLs from the body -* `$PAGE['BODY']['TEXT']`: Pre-parsed content of the page body -* `$PAGE['BODY']['HTML']`: HTML parsed content of the page body +* `$PAGE['BODY']['TEXT']\(\)`: Pre-parsed content of the page body +* `$PAGE['BODY']['HTML']\(\)`: HTML parsed content of the page body * `$PAGE['ATTR']['USER']`: Raw attribute data from database column `user` * `$PAGE['ATTR']['SLUG']`**{!}**: Raw attribute data from database column `slug` * `$PAGE['ATTR']['NAME']`**{!}**: Raw attribute data from database column `name` @@ -207,8 +207,8 @@ Default template for error page 404 Not Found. * `$POST['GUID']`: Contains a pseudo-guid of the post * `$POST['ARGV']`: Contains the arguments parsed as key->value array * `$POST['FILE']['LIST']`: List of extracted image URLs from the body" -* `$POST['BODY']['TEXT']`: Pre-parsed content of the post body -* `$POST['BODY']['HTML']`: HTML parsed content of the post body +* `$POST['BODY']['TEXT']\(\)`: Pre-parsed content of the post body +* `$POST['BODY']['HTML']\(\)`: HTML parsed content of the post body * `$POST['ATTR']['USER']`: Raw attribute data from database column `user` * `$POST['ATTR']['SLUG']`**{!}**: Raw attribute data from database column `slug` * `$POST['ATTR']['NAME']`**{!}**: Raw attribute data from database column `name` @@ -223,8 +223,8 @@ Default template for error page 404 Not Found. * `$USER['GUID']`: Contains a pseudo-guid of the user content * `$USER['ARGV']`: Contains the arguments parsed as key->value array * `$USER['FILE']['LIST']`: List of extracted image URLs from the body -* `$USER['BODY']['TEXT']`: Pre-parsed content of the user body -* `$USER['BODY']['HTML']`: HTML parsed content of the user body +* `$USER['BODY']['TEXT']\(\)`: Pre-parsed content of the user body +* `$USER['BODY']['HTML']\(\)`: HTML parsed content of the user body * `$USER['ATTR']['SLUG']`**{!}**: Raw attribute data from database column `slug` * `$USER['ATTR']['BODY']`**{!}**: Raw attribute data from database column `body` * `$USER['ATTR']['ARGV']`: Raw attribute data from database column `argv` |