In Org-mode there are several ways to make comments. But I do not know of any way to make inline comments. According to the manual
regions surrounded by ‘#+BEGIN_COMMENT’ ... ‘#+END_COMMENT’ will not be exported.
But this is only true if the said region starts a line.
In the following
#+TITLE: Test
text #+BEGIN_COMMENT comment 1 #+END_COMMENT text
text
#+BEGIN_COMMENT comment 2 #+END_COMMENT text
only comment 2 is treated as a comment. It exports (e.g. C-e A) as
text #+BEGIN_COMMENT comment 1 #+END_COMMENT text
text
Also, org-toggle-comment
does not work for making inline comments by using it on regions and comment-region
does not even create a comment.
So, how can I make inline comments in Org-mode?