diff --git a/README.md b/README.md
index 62955f6..a58d235 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,15 @@
# 🍄 Mycorrhiza Wiki
-
+
**Mycorrhiza Wiki** is a filesystem-backed wiki engine that uses Git for
keeping history.
-[⇒ Main wiki](https://mycorrhiza.wiki)
+[👉nMain wiki](https://mycorrhiza.wiki)
## Features
-* **No database required.** Everything is stored as simple files. It makes installation super easy, and you can modify the content with other means such as direct file editing.
-* **Everything is hyphae.** A [hypha][feature-hypha] is a unit of content such as a picture, video or a text article. Hyphae can [transclude][feature-transclusion] and [link][mycomarkup-link] each other resulting in a tight network of hypertext pages.
+* **No database required.** Everything is stored as simple files. It makes installation super easy, and you can modify the content directly.
+* **Everything is hyphae.** A [hypha][feature-hypha] is a unit of content such as a picture, video or a text article. Hyphae can [transclude][feature-transclusion] and link each other resulting in a tight network of hypertext pages.
* **Hyphae are authored in [Mycomarkup][mycomarkup],** a custom markup language that's designed to be unambigious and easy to use.
* **Nesting of hyphae** is supported. A tree of related hyphae is shown on every page.
* **History of changes** for textual parts of hyphae. Every change is safely stored in [Git][integration-git]. Web feeds for recent changes included!
@@ -21,7 +21,6 @@ keeping history.
[feature-transclusion]: https://mycorrhiza.wiki/hypha/feature/transclusion
[feature-authorization]: https://mycorrhiza.wiki/hypha/feature/authorization
[mycomarkup]: https://mycorrhiza.wiki/hypha/mycomarkup
-[mycomarkup-link]: https://mycorrhiza.wiki/hypha/mycomarkup/link
[integration-git]: https://mycorrhiza.wiki/hypha/integration/git
[standard-og]: https://mycorrhiza.wiki/hypha/standard/opengraph
diff --git a/help/en.myco b/help/en.myco
index 50a5921..12c2b63 100644
--- a/help/en.myco
+++ b/help/en.myco
@@ -1,12 +1,14 @@
# Help
-This is Mycorrhiza Wiki built-in documentation.
+This is Mycorrhiza Wiki 1.3 built-in documentation.
-Hope you are doing well ☺️
+**Mycorrhiza Wiki** is a wiki engine. See the [[https://mycorrhiza.wiki | official wiki]].
-See the section on the right (if you are on computer) or below (if you are on mobile) to see what topics are covered by the documentation.
+Hope you are doing well ☺️ Currently, the documentation does not cover everything there is to cover, but it will probably change in the future.
+
+See the section on the right or below (depending on the screen size)) to see what topics are covered by the documentation.
Thanks for reading!
----
-You might want to contribute to the documentation. Open a pull-request on [[https://github.com/bouncepaw/mycorrhiza | GitHub]] if you know how to.
\ No newline at end of file
+You might want to contribute to the documentation. Open a pull-request or an issue on [[https://github.com/bouncepaw/mycorrhiza | GitHub]] if you know how to.
\ No newline at end of file
diff --git a/help/en/mycomarkup.myco b/help/en/mycomarkup.myco
index 960d479..3db829f 100644
--- a/help/en/mycomarkup.myco
+++ b/help/en/mycomarkup.myco
@@ -365,7 +365,7 @@ To include a hypha named `yoghurt`, write a line like that:
<= yoghurt
```
-In 1,2, the transclusion semantics and syntax were changed. If you were using transclusion before that release, please update your hyphae. For time being, the engine will report transclusion using the old syntax with colon.
+In the 1.2 Release, the transclusion semantics and syntax were changed. If you were using transclusion before that release, please update your hyphae. For time being, the engine will report transclusion using the old syntax with colon.
Transclusion lines start with a reverse-rocket symbol (`<=`) followed by zero or more spaces. The text on the line before a line break or a pipe character (`|`) is called //target// or //target hypha//. If there is a pipe, the text after it is called //selector//. If there is no pipe, the //selector// is empty. Both //target// and //selector// are stripped of left-side and right-side whitespace before further processing.