krz/orgo

Lightning fast org-mode static site generator.

clone: git clone https://gitbay.org/krz/orgo.git

main: fixtures/outofscope.org · raw

 1#+TITLE: Out of Scope
 2#+INCLUDE: "other.org"
 3
 4Every construct here is on the explicit "Not supported" list in the org-support guide.
 5The contract is not that we handle them — it is that they degrade predictably and never
 6crash the build.
 7
 8* Babel
 9
10#+BEGIN_SRC sh :results output :exports both
11echo "the block renders; :results is never executed"
12#+END_SRC
13
14#+RESULTS:
15: stale output from a previous evaluation
16
17* Table formulas
18
19| item | cost |
20|------+------|
21| a    |    1 |
22| b    |    2 |
23#+TBLFM: $2=vsum(@2..@3)
24
25* LaTeX
26
27Inline math $x^2 + y^2$ and a display block:
28
29\begin{equation}
30E = mc^2
31\end{equation}
32
33* Macros and radio targets
34
35A macro call {{{author}}} and a <<<radio target>>> stay literal.
36
37* Drawers
38
39:LOGBOOK:
40CLOCK: [2024-01-15 Mon 09:00]--[2024-01-15 Mon 10:00] =>  1:00
41:END:
42
43:CUSTOM_DRAWER:
44Drawer contents are captured and dropped.
45:END:
46
47* Unknown entities
48
49An entity org does not know, \notanentity, stays literal.