7d.nz

org-mode test page

[2021-06-16 mer.]

  org

This is a test page for org mode renderers. A collection of features to check how well an exporter behave. Result of the test on org-weblog (http://7d.nz)

Features [28/41]

  • headlines
    • with timestamp : in use to sort the entries and correctly rendered
  • statistic cookie [0/0] clutter the headlines and the code gets inserted
  • lists
  • checkbox
  • line breaks in lists.
  • TODO states. So far they are in use by the exporter to filter which headlines should be exported. But they need sometimes to be diplayed.
  • bold
  • italic
  • underline
  • strike
  • code
  • verbatim
  • preserving non breakable spaces «                                    » see org-export-filter-plain-text-functions list
  • dates emphasized <2017-04-07 ven.> [2017-04-08 sam.]
  • citation bibtex : Pirsig74 (with a little fontification pb however)
  • sublist
    • A
      • Br
        • C
  • multiple styles/emphasis: bold bold ita (but this is used to work in org!)
  • o ver /lapping markup/
  • horizontal rules

  • org-code
org-code
consecutive lines
with a break in between
  • post blank in paragraph
  • inner links : [[roadmap]
  • inner links : [[anotherlink] < error in a concat ?
  • inner links :
  • external url http://orgmode.org/manual/Internal-links.html
  • aliased external url 7d.nz aliased url
  • home links file:///f/opt/
  • [./blogging-with-org.org::• Introduction]] << missing ref ? "No match for fuzzy expression: • Introduction"
  • footnotes 1

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. In erat mauris, faucibus quis pharetra sit amet, pretium ac libero. Etiam vehicula eleifend bibendum. Morbi gravida metus ut sapien condimentum sodales mollis augue sodales. Vestibulum quis quam at sem placerat aliquet. Curabitur a felis at sapien ullamcorper fermentum. Mauris molestie arcu et lectus iaculis sit amet eleifend eros posuere. Fusce nec porta orci.

    1 , 2

    ← inline footnotes may be missing that space (hence padding)

    2
  • inline footnote 3inline footnote spanning over multiple lines (in list)3
  • ordered list and bullets
    1. some items
      1. item A
      2. item B
    2. some more
      1. item xC
      2. item xD
  • remote & local images event-96-128x128.png emacs.svg
  • raw html directive

    zombo.com
  • attr right
emacs.svg
  • attr center
emacs.svg
  • align center
emacs.svg
  • quotes

    >= = If you find that you're spending almost all your time on theory, start > turning some attention to practical things; it will improve your > theories. If you find that you're spending almost all your time on > practice, start turning some attention to theoretical things; it will > improve your practice. > Donald Ervin Knuth

  • tables
head1 head2
row1col1 row1col2
row2col1 row2col2
   
  • clock
  • scheduling, properties, clocks, drawers, etc are ignored
  • source block
  # colorRGBA
from math import *
from util import format_number

class ColorRGBA(object):

		__slots__ = ('_c',)


		def __init__(self, *args):

				"""Creates a color object."""

				if not args:
						self._c = [0.0, 0.0, 0.0, 1.0]
						return

				if len(args) == 1:
						args = args[0]

				if len(args) == 3:
						r, g, b = args
						self._c = [float(r), float(g), float(b), 1.0]
						return
				if len(args) == 4:
						r, g, b, a = args
						self._c = [float(r), float(g), float(b), float(a)]
						return

				raise ValueError("0, 1, 3 or 4 values required")

		def __str__(self):

				return "(" + ", ".join(format_number(c) for c in self._c) + ")"
				#return "(" + ", ".join(map(str, self._c)) + ")"

		def __repr__(self):

				return "ColorRGBA(" + ", ".join(map(str, self._c)) + ")"

Bibliography

  • [Pirsig74] Robert Pirsig, Zen and the Art of Motorcycle Maintenance, Williman Morore & C°, Inc., New York (1974).


1

Lorem ipsum dolor sit amet, consectetur adipiscing elit. In erat mauris, faucibus quis pharetra sit amet, pretium ac libero. Etiam vehicula eleifend bibendum. Morbi gravida metus ut sapien condimentum sodales mollis augue sodales. Vestibulum quis quam at sem placerat aliquet. Curabitur a felis at sapien ullamcorper fermentum. Mauris molestie arcu et lectus iaculis sit amet eleifend eros posuere. Fusce nec porta orci.

2

← inline footnotes may be missing that space (hence padding)

3

inline footnote spanning over multiple lines (in list)