emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
To: "jenia.ivlev" <jenia.ivlev@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: how to export to HTML keeping the whitespaces
Date: Tue, 02 Dec 2014 10:35:24 +0100	[thread overview]
Message-ID: <8761dumm1v.fsf@nicolasgoaziou.fr> (raw)
In-Reply-To: <87fvd0c8mb.fsf@gmail.com> (jenia ivlev's message of "Sun, 30 Nov 2014 23:11:08 -0500")

Hello,

jenia.ivlev@gmail.com (jenia.ivlev) writes:

> Eric Abrahamsen <eric@ericabrahamsen.net> writes:
>
>> jenia.ivlev@gmail.com (jenia.ivlev) writes:
>>
>>> Hello:
>>>
>>> I want to export to HTML and keep the white spaces.
>>> Normally, I have to do skip a line (two newline characters) or use 
>>> #+begin_verse... #+end_verse. 
>>> Which is not optimal. The two new lines take up too much space, and the
>>> begin/end verse don't export in the same to way to HTML as it does to
>>> text. 
>>> To HTML it keep the indentation corresponding to its location in the
>>> tree, and to text it has a constant indentation (indentation it gives to
>>> verse i think). 
>>> So what is the proper way to do this? How do I instruct org-export to
>>> keep the whitespaces?
>>>
>>> Thanks very much in advnace for your time and kind help.
>>
>> Take a look at the docstring for the org-export-preserve-breaks
>> variable. That ought to do it, and you can set it per-file in the export
>> options.
>>
>> Eric
>
>
> Thanks. 
> I set (org-export-preserve-breaks t) in .emacs file and it does preserve
> the breaks, but not the white spaces: it doesnt indent depending on the
> nesting in the org-tree, and it doesnt indent if I press
> <space>. The text is shown to the left mode of the
> screen. 
>
> Is there a way to change that?

You can try

  (defun my-html-nobreak-space-filter (text backend info)
    (and (org-export-derived-backend-p backend 'html)
         (replace-regexp-in-string " " "&nbsp;" text)))

  (add-to-list 'org-export-filter-plain-text-functions
               #'my-html-nobreak-space-filter)


Regards,

-- 
Nicolas Goaziou

      parent reply	other threads:[~2014-12-02  9:34 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-01  0:18 how to export to HTML keeping the whitespaces jenia.ivlev
2014-12-01  1:39 ` Eric Abrahamsen
2014-12-01  4:11   ` jenia.ivlev
2014-12-01  4:57     ` Eric Abrahamsen
2014-12-02  9:35     ` Nicolas Goaziou [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8761dumm1v.fsf@nicolasgoaziou.fr \
    --to=mail@nicolasgoaziou.fr \
    --cc=emacs-orgmode@gnu.org \
    --cc=jenia.ivlev@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).