html 导出选项在 emacs org 模式下不压缩多个空格
在组织模式下进行 html 导出时,多个空格被压缩为单个空格。有没有办法改变这种默认行为。 (我不想用 nbsp 替换多余的空格)
While doing html-export in org-mode, multiple spaces are compressed to a single space. Is there a way to change this default behaviour. (I do not wish to replace extra spaces with nbsp)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚对此进行了测试,当使用 org-export-as-html 时,org-mode 似乎不会从内容中删除空格。
当然,Web 浏览器在渲染 HTML 时确实会折叠空白。
我建议您查看
white-space
CSS 属性(pre-wrap
值可能就是您想要的),以及 Org 模式对导出 HTML 中 CSS 的支持:M-:
(信息“(org)CSS支持”)
RETI just tested this, and org-mode does not appear to delete spaces from the content when using
org-export-as-html
.Web browsers, of course, do collapse white-space when rendering HTML.
I suggest you look into the
white-space
CSS property (thepre-wrap
value is probably what you want), along with Org Mode's support for CSS in exported HTML:M-:
(info "(org) CSS support")
RET