emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Samuel Wales <samologist@gmail.com>
To: emacs-orgmode@gnu.org
Subject: How to get === on a line by itself to be a special string
Date: Sat, 9 Feb 2013 22:16:28 -0700	[thread overview]
Message-ID: <CAJcAo8vD_LDFsS8DoYNn1RC7x7jKXvAJJetm9RK7f+aNxaghTA@mail.gmail.com> (raw)

I want separators like this:

===

to be treated as a special string in HTML.  This was the
case in the old exporter.

org-html-special-string-regexps is a variable defined in `ox-html.el'.
Its value is (("^-----$" . "<hr/>")
 ("---\\([^-]\\|$\\)" . "&mdash;\\1")
 ("--\\([^-]\\|$\\)" . "&mdash;\\1")
 ("^===$" . "<hr width=\"10%\"
style=\"width:10%;color:#000;background-color:#000;height:1px;border:none\"
/>")
 ("\\\\-" . "&shy;")
 ("---\\([^-]\\)" . "&mdash;\\1")
 ("--\\([^-]\\)" . "&ndash;\\1")
 ("\\.\\.\\." . "&hellip;"))

I don't want them to be interpreted as code.  I don't want
to turn off all code just to get this one thing to work.  I don't want
to do ~===~.

Does this mean some filter has to be used?

This did not work.

(add-to-list 'org-export-filter-code-functions
       (lambda (text back-end &rest _rest)
         (if (eq back-end 'html)
             (replace-regexp-in-string "^===$" "~===~" text)
           text)))

Thanks.

             reply	other threads:[~2013-02-10  5:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-10  5:16 Samuel Wales [this message]
2013-02-10  9:01 ` How to get === on a line by itself to be a special string Nicolas Goaziou
2013-02-12 19:02   ` Samuel Wales

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=CAJcAo8vD_LDFsS8DoYNn1RC7x7jKXvAJJetm9RK7f+aNxaghTA@mail.gmail.com \
    --to=samologist@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /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).