diff --git a/content/content/summaries.md b/content/content/summaries.md
index 0f2e6433b..1f65d431d 100644
--- a/content/content/summaries.md
+++ b/content/content/summaries.md
@@ -24,14 +24,14 @@ By default, Hugo automatically takes the first 70 words of your content as its s
## User-defined: manual summary split:
-Alternatively, you may add the <!--more--> summary divider[^1] where you want to split the article. Content prior to the summary divider will be used as that content's summary, and stored into the `.Summary` variable with all HTML formatting intact.
+Alternatively, you may add the <!--more--> summary divider[^1] (for org content, use # more) where you want to split the article. Content prior to the summary divider will be used as that content's summary, and stored into the `.Summary` variable with all HTML formatting intact.
[^1]: The **summary divider** is also called "more tag", "excerpt separator", etc. in other literature.
* Pros: Freedom, precision, and improved rendering. All formatting is preserved.
-* Cons: Need to remember to type <!--more--> in your content file. :-)
+* Cons: Need to remember to type <!--more--> (or # more for org content) in your content file. :-)
-Be careful to enter <!--more--> exactly, i.e. all lowercase with no whitespace, otherwise it would be treated as regular comment and ignored.
+Be careful to enter <!--more--> (or # more for org content) exactly, i.e. all lowercase with no whitespace, otherwise it would be treated as regular comment and ignored.
If there is nothing but spaces and newlines after the summary divider then `.Truncated` will be false.
diff --git a/content/content/supported-formats.md b/content/content/supported-formats.md
index 68aa66acc..1b3033596 100644
--- a/content/content/supported-formats.md
+++ b/content/content/supported-formats.md
@@ -13,7 +13,7 @@ weight: 15
toc: true
---
- Since 0.14, Hugo has defined a new concept called _external helpers_. It means that you can write your content using Asciidoc[tor], or reStructuredText. If you have files with associated extensions ([details](https://github.com/spf13/hugo/blob/77c60a3440806067109347d04eb5368b65ea0fe8/helpers/general.go#L65)), then Hugo will call external commands to generate the content.
+ Since 0.14, Hugo has defined a new concept called _external helpers_. It means that you can write your content using Asciidoc[tor], reStructuredText or Org-Mode. If you have files with associated extensions ([details](https://github.com/spf13/hugo/blob/77c60a3440806067109347d04eb5368b65ea0fe8/helpers/general.go#L65)), then Hugo will call external commands to generate the content (the exception being Org-Mode content, which is parsed natively).
This means that you will have to install the associated tool on your machine to be able to use those formats.