summaryrefslogtreecommitdiffstats
path: root/Editor.md
diff options
context:
space:
mode:
Diffstat (limited to 'Editor.md')
-rw-r--r--Editor.md12
1 files changed, 6 insertions, 6 deletions
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
-<!-- Final result after the Markdown was parsed: -->
+<!-- Final result after the Markdown was transformed: -->
Hello there. Check out <a href="https://blog.git/readme.md">the README</a>!
~~~
@@ -27,7 +27,7 @@ Hello there. Check out <a href="https://blog.git/readme.md">the README</a>!
![A cute kitten](https://blog.git/rsrc/image/content/kitten.jpg "Look at this!")
~~~
~~~html
-<!-- Final result after the Markdown was parsed: -->
+<!-- Final result after the Markdown was transformed: -->
<img src="https://blog.git/rsrc/image/content/kitten.jpg" alt="A cute kitten" title="Look at this!" />
~~~
@@ -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
-<!-- Final result after the Markdown was parsed: -->
+<!-- Final result after the Markdown was transformed: -->
Hello there! Check out this post: <a href="https://blog.git/post/hello-world/" title="Post »Hello World!«">»Hello World!«</a>
~~~
@@ -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
-<!-- Final result after the Markdown was parsed: -->
+<!-- Final result after the Markdown was transformed: -->
Hello there! Check out <a href="https://blog.git/post/hello-world/" title="Post »Hello World!«">this post</a>!
~~~
@@ -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
-<!-- Final result after the Markdown was parsed: -->
+<!-- Final result after the Markdown was transformed: -->
Hello there! Check out <a href="https://blog.git/post/hello-world/" title="Click to show post">this post</a>!
~~~