emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
To: Alan Schmitt <alan.schmitt@polytechnique.org>
Cc: emacs-orgmode <emacs-orgmode@gnu.org>
Subject: Re: doc patch: move footnote in external links
Date: Fri, 16 Jan 2015 09:57:05 +0100	[thread overview]
Message-ID: <87h9vrt8e9.fsf@nicolasgoaziou.fr> (raw)
In-Reply-To: <m2387dcxek.fsf@charm-ecran.irisa.fr> (Alan Schmitt's message of "Wed, 14 Jan 2015 14:19:31 +0100")

Alan Schmitt <alan.schmitt@polytechnique.org> writes:

> Would the following work as a regexp builder that allows arbitrary space
> and cookies between each word (making sure there is at least one)?
>
> #+begin_src emacs-lisp
> (defun org-heading-regexp-build (s)
>   (let* ((sp (reverse (org-split-string s)))

You can ignore SP for the time being.

>          (wspace "[ \t]")
>          (wspaceopt (concat wspace "*"))
>          (cookie (concat "\\(?:"
>                          wspaceopt
>                          "\\(?:\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]\\)"

  "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]"

statistics cookies can be empty.

>                          wspaceopt
>                          "\\)"))
>          (sep (concat "\\(?:" wspace "+\\|" cookie "+\\)"))
>          res)
>     (dolist (w sp) (setq res (concat w sep res)))
>     (concat sep res))

(concat sep (mapconcat #'identity (org-split-string s) sep) sep)

> This of course needs to be extended with the other headline features
> (todo keyword, tags, …)

I don't think so. Other features can be ignored (see, e.g.,
`org-get-heading').


Regards,

  reply	other threads:[~2015-01-16  8:56 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-12  7:31 doc patch: move footnote in external links Alan Schmitt
2014-12-12 17:29 ` Nicolas Goaziou
2014-12-13  9:43   ` Alan Schmitt
2014-12-13 14:17     ` Nicolas Goaziou
2014-12-16 17:20       ` Alan Schmitt
2014-12-16 21:54         ` Nicolas Goaziou
2014-12-17 16:33           ` Alan Schmitt
2014-12-20 22:15             ` Nicolas Goaziou
2015-01-10 12:45               ` Alan Schmitt
2015-01-11 22:00                 ` Nicolas Goaziou
2015-01-12  7:40                   ` Alan Schmitt
2015-01-12  8:43                     ` Nicolas Goaziou
2015-01-12 11:12                       ` Alan Schmitt
2015-01-12 22:56                         ` Nicolas Goaziou
2015-01-14 13:19                           ` Alan Schmitt
2015-01-16  8:57                             ` Nicolas Goaziou [this message]
2015-02-07 11:23                               ` Alan Schmitt
2015-02-07 21:44                                 ` Nicolas Goaziou

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=87h9vrt8e9.fsf@nicolasgoaziou.fr \
    --to=mail@nicolasgoaziou.fr \
    --cc=alan.schmitt@polytechnique.org \
    --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).