Closed shelverizr closed 1 week ago
All "meta" lines (starting with #+foo:
) do not line break and instead scroll horizontally. This is by design because they are usually not really part of the document content, but rather directives for how the content should behave or be processed.
I will think about whether it's worth treating #+title:
differently.
All "meta" lines (starting with
#+foo:
) do not line break and instead scroll horizontally. This is by design because they are usually not really part of the document content, but rather directives for how the content should behave or be processed.I will think about whether it's worth treating
#+title:
differently.
Please also consider #+filetags
All "meta" lines (starting with
#+foo:
) do not line break and instead scroll horizontally. This is by design because they are usually not really part of the document content, but rather directives for how the content should behave or be processed.I will think about whether it's worth treating
#+title:
differently.
Just tried it on Orgro, can't slide the title.
Oops, you're right, I was thinking of something else to which I've given similar treatment.
Currently you can ensure that meta lines are not truncated by disabling Reader Mode in Orgro. If you are consuming org_flutter directly, you should provide an OrgSettings
object with deemphasizeMarkup
set to false (such as OrgSettings.hideMarkup
).
Oops, you're right, I was thinking of something else to which I've given similar treatment.
Currently you can ensure that meta lines are not truncated by disabling Reader Mode in Orgro. If you are consuming org_flutter directly, you should provide an
OrgSettings
object withdeemphasizeMarkup
set to false (such asOrgSettings.hideMarkup
).
Tried disabling it. It's better.
In org_flutter v7.10,
#+TITLE:
; see M-x describe-face org-document-info-keyword
.In org_flutter v7.10,
- "Document info" meta lines are styled like in Emacs, are never truncated, and are never de-emphasized. This includes
#+TITLE:
; seeM-x describe-face org-document-info-keyword
.- Regular meta lines are scrollable when de-emphasized
Tried it and it works fine. Thanks