-
Notifications
You must be signed in to change notification settings - Fork 123
XML
This section is a work in progress.
This section serves to document the different XML tags used.
-
COMMENT: can be added anywhere in the text; will displayed only in the comparison edition, and are rendered there in grey. COMMENT makes a "span" element in HTML, meant for inline comments.
-
WEB_ONLY: can be added anywhere in the text; will only go in the web editions (JS and split). To get the right color-coding in the comparison edition, WEB_ONLY needs to be inside of SPLIT tags. WEB_ONLY makes a "div" element in HTML, meant for paragraphs.
-
PDF_ONLY: can be added anywhere in the text; will only go in the PDF edition. Content shows up inline in the PDF. (currently rendered using a DIV paragraph in the comparison edition)
-
EXERCISE: mark a textbook exercise; must have a LABEL tag as their first element.
-
SOLUTION: add a solution to an EXERCISE; must be inside of the EXERCISE tag that it refers to.
-
LABEL: have a NAME attribute so that other sections can refer with a REF tag to the element that has the LABEL.
-
REF: have a NAME attribute to refer to elements that are tagged with LABEL.
-
META: within
<SNIPPET><JAVASCRIPT>...</JAVASCRIPT></SNIPPET>
and in normal text, this will produce an italics font intended for meta variables.<META>
elements must not enclose any other elements. No math allowed in<META>
. -
METAPHRASE: within
<SNIPPET><JAVASCRIPT>...</JAVASCRIPT></SNIPPET>
and in normal text, this will produce an italics font within angle brackets, intended for meta-level phrases.<METAPHRASE>
elements may include<JAVASCRIPTINLINE>
elements, but no other elements. No math allowed in<METAPHRASE>
. -
JAVASCRIPTINLINE: will render the enclosed string as program syntax.
<JAVASCRIPTINLINE>
elements must not enclose any other elements. The element may enclose the characters{
,}
,%
, and$
, all rendered literally. In addition, the content of<JAVASCRIPTINLINE>
must not start with a blank character. -
SCHEMEINLINE: same as JAVASCRIPTINLINE
-
SPACE adds a non-breaking space.
-
FIXED_SPACE adds a non-breaking space in the same formatting as JAVASCRIPTINLINE.
See INDEX for more information.
See SNIPPET for more information.
See FIGURE for more information.
See SECTION for more information.
See SPLIT for more information
The following tags are replaced by their corresponding symbols.
Tag | Symbol |
---|---|
<APOS> |
' |
<AACUTE_LOWER> |
á |
<AACUTE_UPPER> |
Á |
<AGRAVE_LOWER> |
à |
<AGRAVE_UPPER> |
À |
<ACIRC_LOWER> |
â |
<EACUTE_LOWER> |
é |
<EACUTE_UPPER> |
É |
<EGRAVE_LOWER> |
è |
<EGRAVE_UPPER> |
È |
<ECIRC_LOWER> |
ê |
<OUML_LOWER> |
ö |
<OUML_UPPER> |
Ö |
<UUML_LOWER> |
ü |
<UUML_UPPER> |
Ü |
<CCEDIL_LOWER> |
ç |
<ELLIPSIS> |
… |
<AMP> |
& |
<DOLLAR> |
$ |
<SECT> |
§ |
<EMDASH> |
— |
<ENDASH> |
– |
<SPACE> |
These tags are used to format text.
-
<WJ>
- Word Joiner, used to indicate that word separation should not occur at this position -
<FIXED_SPACE>
- Non-breaking space -
<ALLOW_BREAK>
- // TODO -
<B>
- Bolded text -
<EM>
- Emphasised text