emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Preventing noweb substitution during export


From: Samuel W. Flint
Subject: Re: [O] Preventing noweb substitution during export
Date: Wed, 27 Dec 2017 16:50:01 -0600
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)

Nicolas, my apologies for sending this twice.
>>>>> Nicolas Goaziou writes:

    NG> Hello, address@hidden (Samuel W. Flint) writes:

    >> I used to be able to prevent noweb substitution during export by
    >> setting noweb to tangle, now it's only a yes/no option.  When was
    >> this feature removed, and what can I do to get it back?

    NG> I don't think that was intended. Would you have an ECM
    NG> demonstrating the issue?

It didn't get removed, though no-export is now the correct value.
Neither, however, are currently documented in the manual.

    NG> Regards,

    NG> -- Nicolas Goaziou

And the following should demonstrate how they currently behave:

#+BEGIN_EXAMPLE
#+PROPERTY: :noweb tangle

#+name: a
#+begin_src python
  def foo():
      print "foo"
#+end_src

#+name: b
#+begin_src python

  <<a>>

  foo()
#+end_src

#+name: c
#+begin_src python :tangle "test.py"

  import bar
  <<b>>
#+end_src
#+END_EXAMPLE

The file 'test.py' will contain:

    import bar
    <<a>>

    foo()

If noweb is set to no-export, the <<a>> will be resolved.  However, with
tangle, the block is included during export.

HTH,

Sam

-- 
Samuel W. Flint
4096R/266596F4
      (9477 D23E 389E 40C5 2F10  DE19 68E5 318E 2665 96F4)
λs.(s s) λs.(s s)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]