* inline code and minted
@ 2016-02-05 10:07 Alan Schmitt
2016-02-05 13:33 ` Nicolas Goaziou
0 siblings, 1 reply; 6+ messages in thread
From: Alan Schmitt @ 2016-02-05 10:07 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 700 bytes --]
Hello,
I see that
src_coq[:exports code]{nat}
exports to (latex export with minted)
\mint{coq}~nat~
which does not work as inline code here. The following would work,
however, with a recent minted:
\mintinline{coq}{nat}
I have two questions:
- should we support this and generate this code?
- in the meantime, I created a macro that does this for latex, but it
does not work for html (it exports the “src_coq” string verbatim):
#+macro: coq @@latex:\mintinline{coq}{$1}@@@@html:src_coq[:exports code]{$1}@@
Why is this macro wrong?
Thanks,
Alan
--
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated February 4, 2016, Mauna Loa Obs.): 403.08 ppm
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: inline code and minted
2016-02-05 10:07 inline code and minted Alan Schmitt
@ 2016-02-05 13:33 ` Nicolas Goaziou
2016-02-05 15:01 ` Alan Schmitt
0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2016-02-05 13:33 UTC (permalink / raw)
To: Alan Schmitt; +Cc: emacs-orgmode
Hello,
Alan Schmitt <alan.schmitt@polytechnique.org> writes:
> Hello,
>
> I see that
>
> src_coq[:exports code]{nat}
>
> exports to (latex export with minted)
>
> \mint{coq}~nat~
>
> which does not work as inline code here. The following would work,
> however, with a recent minted:
>
> \mintinline{coq}{nat}
>
> I have two questions:
> - should we support this and generate this code?
Sure. Could you provide and apply a patch for that?
> - in the meantime, I created a macro that does this for latex, but it
> does not work for html (it exports the “src_coq” string verbatim):
> #+macro: coq @@latex:\mintinline{coq}{$1}@@@@html:src_coq[:exports code]{$1}@@
> Why is this macro wrong?
Contents of an export snippet, e.g. @@html:...@@ are not evaluated by
the back-end. IOW this is back-end code.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: inline code and minted
2016-02-05 13:33 ` Nicolas Goaziou
@ 2016-02-05 15:01 ` Alan Schmitt
2016-02-05 17:15 ` Kaushal Modi
2016-02-05 17:27 ` Nicolas Goaziou
0 siblings, 2 replies; 6+ messages in thread
From: Alan Schmitt @ 2016-02-05 15:01 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 272 bytes --]
On 2016-02-05 14:33, Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:
>> I have two questions:
>> - should we support this and generate this code?
>
> Sure. Could you provide and apply a patch for that?
Yes. Here it is for review, please let me know if I can apply it.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-ox-latex.el-Fix-minted-inline.patch --]
[-- Type: text/x-patch, Size: 1038 bytes --]
From aa8c0fa91af7a9307491bad78d7f82ce1705a7bd Mon Sep 17 00:00:00 2001
From: Alan Schmitt <alan.schmitt@polytechnique.org>
Date: Fri, 5 Feb 2016 15:55:54 +0100
Subject: [PATCH] ox-latex.el: Fix minted inline
* lisp/ox-latex.el (org-latex-inline-src-block): Output minted code that
correctly formats code inline.
---
lisp/ox-latex.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index ec06b17..5879e40 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -2012,10 +2012,10 @@ contextual information."
(downcase org-lang)))
(options (org-latex--make-option-string
(plist-get info :latex-minted-options))))
- (concat (format "\\mint%s{%s}"
+ (format "\\mintinline%s{%s}{%s}"
(if (string= options "") "" (format "[%s]" options))
- mint-lang)
- separator code separator)))
+ mint-lang
+ code)))
;; Use listings package.
(otherwise
;; Maybe translate language's name.
--
2.7.0
[-- Attachment #1.3: Type: text/plain, Size: 611 bytes --]
>> - in the meantime, I created a macro that does this for latex, but it
>> does not work for html (it exports the “src_coq” string verbatim):
>> #+macro: coq @@latex:\mintinline{coq}{$1}@@@@html:src_coq[:exports code]{$1}@@
>> Why is this macro wrong?
>
> Contents of an export snippet, e.g. @@html:...@@ are not evaluated by
> the back-end. IOW this is back-end code.
I see. I think I’ll just use <code> then and skip the syntax coloring
for the moment.
Thanks,
Alan
--
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated February 4, 2016, Mauna Loa Obs.): 403.08 ppm
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: inline code and minted
2016-02-05 15:01 ` Alan Schmitt
@ 2016-02-05 17:15 ` Kaushal Modi
2016-02-05 17:27 ` Nicolas Goaziou
1 sibling, 0 replies; 6+ messages in thread
From: Kaushal Modi @ 2016-02-05 17:15 UTC (permalink / raw)
To: Alan Schmitt, emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 394 bytes --]
On Fri, Feb 5, 2016 at 10:01 AM Alan Schmitt <alan.schmitt@polytechnique.org>
wrote:
>
> Yes. Here it is for review, please let me know if I can apply it.
>
TIL that we can have inline source code highlighting in org exports!
For anyone else that just got enlightened about this, check out "C-h i g
(org) Structure of code blocks".
@Alan: I tried out your patch and it works great! Thanks!
[-- Attachment #2: Type: text/html, Size: 731 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: inline code and minted
2016-02-05 15:01 ` Alan Schmitt
2016-02-05 17:15 ` Kaushal Modi
@ 2016-02-05 17:27 ` Nicolas Goaziou
2016-02-06 8:53 ` Alan Schmitt
1 sibling, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2016-02-05 17:27 UTC (permalink / raw)
To: Alan Schmitt; +Cc: emacs-orgmode
Alan Schmitt <alan.schmitt@polytechnique.org> writes:
> Yes. Here it is for review, please let me know if I can apply it.
Be my guest! Thank you.
> I see. I think I’ll just use <code> then and skip the syntax coloring
> for the moment.
I'm not sure to understand your problem. src_emacs-lisp{(+ 1 1)} should
get syntax coloring in both latex and html back-end.
Regards,
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: inline code and minted
2016-02-05 17:27 ` Nicolas Goaziou
@ 2016-02-06 8:53 ` Alan Schmitt
0 siblings, 0 replies; 6+ messages in thread
From: Alan Schmitt @ 2016-02-06 8:53 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1131 bytes --]
On 2016-02-05 18:27, Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:
> Alan Schmitt <alan.schmitt@polytechnique.org> writes:
>
>> Yes. Here it is for review, please let me know if I can apply it.
>
> Be my guest! Thank you.
Done.
>> I see. I think I’ll just use <code> then and skip the syntax coloring
>> for the moment.
>
> I'm not sure to understand your problem. src_emacs-lisp{(+ 1 1)} should
> get syntax coloring in both latex and html back-end.
I’m collaborating with some people who use org from elpa, so they do not
have access to the fix. For them I can set up a macro that does the
right thing in the latex case, but I don’t know to have backend-specific
code in the latex case and the default handling in the other cases.
In other words, right now I have this:
#+macro: coq @@latex:\mintinline{coq}{$1}@@@@html:<code>$1</code>@@
and I would like to replace the @@html: bit with the default inline
source code behavior except for latex export.
Best,
Alan
--
OpenPGP Key ID : 040D0A3B4ED2E5C7
Athmospheric CO₂ (Updated February 4, 2016, Mauna Loa Obs.): 403.08 ppm
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-02-06 8:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-05 10:07 inline code and minted Alan Schmitt
2016-02-05 13:33 ` Nicolas Goaziou
2016-02-05 15:01 ` Alan Schmitt
2016-02-05 17:15 ` Kaushal Modi
2016-02-05 17:27 ` Nicolas Goaziou
2016-02-06 8:53 ` Alan Schmitt
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).