mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-28 07:44:49 +00:00
* doc/org.texi: Documented :noweb no-export
This commit is contained in:
parent
ce5c5d896b
commit
5cd59a87c1
28
doc/org.texi
28
doc/org.texi
@ -13581,21 +13581,27 @@ interpreted language.
|
|||||||
@node noweb, noweb-ref, session, Specific header arguments
|
@node noweb, noweb-ref, session, Specific header arguments
|
||||||
@subsubsection @code{:noweb}
|
@subsubsection @code{:noweb}
|
||||||
|
|
||||||
The @code{:noweb} header argument controls expansion of ``noweb'' style (see
|
The @code{:noweb} header argument controls expansion of ``noweb'' syntax
|
||||||
@ref{Noweb reference syntax}) references in a code block. This header
|
references (see @ref{Noweb reference syntax}) when the code block is
|
||||||
argument can have one of three values: @code{yes}, @code{no}, or @code{tangle}.
|
evaluated, tangled, or exported. The @code{:noweb} header argument can have
|
||||||
|
one of four values: @code{no}, @code{yes}, @code{tangle}, or
|
||||||
|
@code{no-export}.
|
||||||
|
|
||||||
@itemize @bullet
|
@itemize @bullet
|
||||||
@item @code{yes}
|
|
||||||
All ``noweb'' syntax references in the body of the code block will be
|
|
||||||
expanded before the block is evaluated, tangled or exported.
|
|
||||||
@item @code{no}
|
@item @code{no}
|
||||||
The default. No ``noweb'' syntax specific action is taken when the code
|
The default. ``Noweb'' syntax references in the body of the code block will
|
||||||
block is evaluated, tangled or exported.
|
not be expanded before the code block is evaluated, tangled or exported.
|
||||||
|
@item @code{yes}
|
||||||
|
``Noweb'' syntax references in the body of the code block will be
|
||||||
|
expanded before the code block is evaluated, tangled or exported.
|
||||||
@item @code{tangle}
|
@item @code{tangle}
|
||||||
All ``noweb'' syntax references in the body of the code block will be
|
``Noweb'' syntax references in the body of the code block will be expanded
|
||||||
expanded before the block is tangled, however ``noweb'' references will not
|
before the code block is tangled. However, ``noweb'' syntax references will
|
||||||
be expanded when the block is evaluated or exported.
|
not be expanded when the code block is evaluated or exported.
|
||||||
|
@item @code{no-export}
|
||||||
|
``Noweb'' syntax references in the body of the code block will be expanded
|
||||||
|
before the block is evaluated or tangled. However, ``noweb'' syntax
|
||||||
|
references will not be expanded when the code block is exported.
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
@subsubheading Noweb prefix lines
|
@subsubheading Noweb prefix lines
|
||||||
|
Loading…
Reference in New Issue
Block a user