From: Andreas Leha <andreas.leha@med.uni-goettingen.de>
To: emacs-orgmode@gnu.org
Subject: Re: How to inspect a document and check for the presence of source block language names and support
Date: Sat, 29 Nov 2014 20:40:49 +0000 [thread overview]
Message-ID: <oluwq6dhh9q.fsf@med.uni-goettingen.de> (raw)
In-Reply-To: CAAjq1mc7juPiz2Gk_+KRE+_CWzCnK-Ts=H96pwPu1+jr_2=bzw@mail.gmail.com
Grant Rettke <gcr@wisdomandwonder.com> writes:
> What a treat, sir, thank you for sharing that as if by some delightful
> magic, which surely it indeed is.
Many thanks also from my side!
>
> On Sat, Nov 29, 2014 at 4:38 AM, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:
>> Hello,
>>
>> Andreas Leha <andreas.leha@med.uni-goettingen.de> writes:
>>
>>> Grant Rettke <gcr@wisdomandwonder.com> writes:
>>>> Good evening,
>>>>
>>>> My goal is to obtain the following behavior in org mode for a document:
>>>> 1) Report an error if there is a source block without a language
>>>> specified
>>>> 2) Report an error if there is a source block with a language specified
>>>> that is *not* present in `org-babel-load-languages'
>>>>
>>>> I've thought about ways to do this and come up with:
>>>> 1) Visually inspect the document
>>>> 2) Use `org-element' to parse and process the document
>>>
>>> I'd be interested in 2) if you come up with something here :-)
>>
>> (defun my-src-block-check ()
>> (interactive)
>> (org-element-map (org-element-parse-buffer 'element) 'src-block
>> (lambda (src-block)
>> (let ((language (org-element-property :language src-block)))
>> (cond ((null language)
>> (error "Missing language at position %d"
>> (org-element-property :post-affiliated src-block)))
>> ((not (assoc-string language org-babel-load-languages))
>> (error "Unknown language at position %d"
>> (org-element-property :post-affiliated src-block)))))))
>> (message "Source blocks checked in %s." (buffer-name (buffer-base-buffer))))
>>
>>
>> Regards,
>>
>> --
>> Nicolas Goaziou
>>
next prev parent reply other threads:[~2014-11-29 20:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-29 2:08 How to inspect a document and check for the presence of source block language names and support Grant Rettke
2014-11-29 2:22 ` Andreas Leha
2014-11-29 10:38 ` Nicolas Goaziou
2014-11-29 14:42 ` Grant Rettke
2014-11-29 20:40 ` Andreas Leha [this message]
2015-02-03 9:55 ` Sebastien Vauban
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=oluwq6dhh9q.fsf@med.uni-goettingen.de \
--to=andreas.leha@med.uni-goettingen.de \
--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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.