From 3110e98a7b1bbaecb37d3430983b7855a40a924d Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Wed, 21 Jul 2021 16:38:32 +0200 Subject: Do some minor optimizations --- Editor.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Editor.md') diff --git a/Editor.md b/Editor.md index 8d776f9..dd53b4b 100644 --- a/Editor.md +++ b/Editor.md @@ -1,4 +1,4 @@ -If you want to reference another item (e.g. a post or a category) in your content, please do not put the URL to it hardcoded into the editor. Consider what happens if you change your blog's address (or just the base directory) in the future. You would need to change all the hardcoded URLs in your content which is inflexible and not cool. Therefore, you can use the following so-called [*content functions*](Content_Functions) to link an item or a resource of your installation dynamically within your Markdown content. +If you want to reference another item (e.g. a post or a category) in your content, please do not put the URL to it hard coded into the editor. Consider what happens if you change your blog's address (or just the base directory) in the future. You would need to change all the hard coded URLs in your content which is inflexible and not cool. Therefore, you can use the following so-called [*content functions*](Content_Functions) to link an item or a resource of your installation dynamically within your Markdown content. **Note:** You can combine these functions with Markdown syntax since they are processed and transformed before the Markdown parser finally transforms the content to HTML. There is even the possibility [to add your own custom functions](Content_Functions#how-to-add-custom-functions). @@ -14,7 +14,7 @@ Hello there. Check out [the README]({BASE_URL: "readme.md"})! Hello there. Check out [the README](https://blog.git/readme.md)! ~~~ ~~~html - + Hello there. Check out the README! ~~~ @@ -27,7 +27,7 @@ Hello there. Check out the README! ![A cute kitten](https://blog.git/rsrc/image/content/kitten.jpg "Look at this!") ~~~ ~~~html - + A cute kitten ~~~ @@ -47,7 +47,7 @@ Hello there! Check out this post: {POST: 1} Hello there! Check out this post: [»Hello World!«](https://blog.git/post/hello-world/ "Post »Hello World!«") ~~~ ~~~html - + Hello there! Check out this post: »Hello World!« ~~~ @@ -60,7 +60,7 @@ Hello there! Check out {POST: 1, "this post"}! Hello there! Check out [this post](https://blog.git/post/hello-world/ "Post »Hello World!«")! ~~~ ~~~html - + Hello there! Check out this post! ~~~ @@ -73,7 +73,7 @@ Hello there! Check out {POST: 1, "this post", "Click to show post"}! Hello there! Check out [this post](https://blog.git/post/hello-world/ "Click to show post")! ~~~ ~~~html - + Hello there! Check out this post! ~~~ -- cgit v1.2.3