From 462da48ca83d9576fc1ff4aad1ca481f230455e7 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Wed, 24 May 2017 22:27:32 +0200 Subject: Formatting changed. --- Editor.md | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/Editor.md b/Editor.md index 158b660..243cbbb 100644 --- a/Editor.md +++ b/Editor.md @@ -5,8 +5,10 @@ If you wanna link an item of your blog application, please don't put the absolut ## Dynamic linking of resources You can link resources which are located anywhere within your installation dynamically, either relative to your base directory or relative to your `rsrc` directory where you store your content like images and other files (this is the preferred method to include an image within your items content): -* Write `{BASE["other/directory/"]}` into the editor and get `https://hostname/other/directory/` -* Write `{FILE["image/foobar.jpg"]}` into the editor and get `https://hostname/rsrc/image/foobar.jpg` +* Write `{BASE["other/directory/"]}` into the editor and get: +`https://hostname/other/directory/` +* Write `{FILE["image/foobar.jpg"]}` into the editor and get: +`https://hostname/rsrc/image/foobar.jpg` ### Combined with markdown syntax for displaying images * Write `![A foobar image]({FILE["image/foobar.jpg"]})` into the editor and get `A foobar image` @@ -14,14 +16,20 @@ You can link resources which are located anywhere within your installation dynam ## Dynamic linking of pages, posts and users You have to know the unique ID of the item which you can find in the administration area, so that the system can identify it and replace the code with the items URL (if you put an ID into the syntax which does not exists, the output in your HTML will be just `{undefined}`): -* Write `{PAGE[123]}` into the editor and get `https://hostname/page/page-with-id-123/` -* Write `{POST[123]}` into the editor and get `https://hostname/post/post-with-id-123/` -* Write `{USER[123]}` into the editor and get `https://hostname/user/user-with-id-123/` +* Write `{PAGE[123]}` into the editor and get: +`https://hostname/page/page-with-id-123/` +* Write `{POST[123]}` into the editor and get: +`https://hostname/post/post-with-id-123/` +* Write `{USER[123]}` into the editor and get: +`https://hostname/user/user-with-id-123/` ### Combined with markdown syntax for URL linking: -* Write `[A cool page]({PAGE[123]})` into the editor and get `A cool page` -* Write `[A cool post]({POST[123]})` into the editor and get `A cool post` -* Write `[A cool user]({USER[123]})` into the editor and get `A cool user` +* Write `[A cool page]({PAGE[123]})` into the editor and get: +`A cool page` +* Write `[A cool post]({POST[123]})` into the editor and get: +`A cool post` +* Write `[A cool user]({USER[123]})` into the editor and get: +`A cool user` -- cgit v1.2.3