emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
To: Andreas Leha <andreas.leha@med.uni-goettingen.de>
Cc: 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 11:38:36 +0100	[thread overview]
Message-ID: <87egsmnvf7.fsf@nicolasgoaziou.fr> (raw)
In-Reply-To: <olufvd23fv4.fsf@med.uni-goettingen.de> (Andreas Leha's message of "Sat, 29 Nov 2014 02:22:39 +0000")

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

  reply	other threads:[~2014-11-29 10:37 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 [this message]
2014-11-29 14:42     ` Grant Rettke
2014-11-29 20:40       ` Andreas Leha
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

  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=87egsmnvf7.fsf@nicolasgoaziou.fr \
    --to=mail@nicolasgoaziou.fr \
    --cc=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 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).