Image 1: SKRYB logo
SKRYB is a simple markup language designed for writing documentation and technical articles. The SKRYB compiler is straightforward and converts the input SKRYB file into an HTML document in a single pass. The document format is described below.
1.1 - SKRYB document header
A SKRYB document header is structured as follows:
--> /title{ TITLE }: sets the document's title
--> /authors{ "AUTHOR1"; "AUTHOR2"; }: declares a list of authors
--> /contacts{ "EMAIL1"; "EMAIL2"; }: declares a list of emails for each author
--> /date{ "STRING" or "date" or "date_time" }: sets the document date. The date can either be set automatically by using the "date" or "date_time" keywords or manually by specifying it as a string
--> /keywords{ WORD1; WORD2; }: declares a list of keywords. The list can be left empty and keywords must be alphanumeric. The "-" is also allowed
--> /abstract{ ABSTRACT }: sets the document's abstract
Note that markers must always be attached to the opening bracket '"{" ' as follows: /marker{. The following is the header SKRYB code for the current document:
/title{ SKRYB }
/authors{ "yaspr"; }
/contacts{ "yaspr@pm.me"; }
/date{ "date" }
/keywords{ SKRYB; HTML; markup; documentation-format; article-format; }
/abstract{ This document describes SKRYB, a simple markup language for writing documentation and technical articles. The SKRYB source of this document is self-explanatory! }
Figure 1: Current SKRYB header in HTML
1.2 - SKRYB document body
Once header fields have been set, the document body can be populated with sections. The following text markers are only handled within a section definition:
--> /paragraph{ TEXT }: declares a paragraph
--> /table{ DESCRIPTION }{ { COL1; COL2; } {COL1; COL2; } }: declares a table. The first row is used as columns identifiers
--> /image{ DESCRIPTION } { "PATH"; WIDTH; HEIGHT; }: declares an image
--> /figure{ DESCRIPTION } { "PATH"; WIDTH; HEIGHT; }: declares a figure
--> /link{ ID }{ "TARGET" }: declares a link and sets its target
--> /bold{ TEXT }: BOLD
--> /italic{ TEXT }: ITALIC
--> /under{ TEXT }: UNDERLINED
--> /sub{ TEXT }: XY
--> /sup{ TEXT }: XY
--> /asis{ "STRING" }: prints the content of the string "as is", no interpretation.
--> /enum{ FIELD1; FIELD2; FIELD3; }: ordered and enumerated list
--> /list{ FIELD1; FIELD2; FIELD3; }: unordered list
--> /frame{ TEXT }: draws a frame
--> /center{ TEXT }: centers its content
--> /newline{}: creates a new line
--> /color{ COLOR }{ TEXT }: sets the color for a given text
--> /index{}: creates an index at the end of the document with links to sections, images, figures, and tables. This marker can be placed anywhere after the header
--> /copyright{}: creates a copyright footer at the end of the document. This marker can be placed anywhere after the header
2.1 - Tables
The following is an example of a table definition in SKRYB with the result below:
/table{ A table }{
{ title1; title2; title3; title4; }
{ data1; data2; data3; data4; }
{ data1; data2; data3; data4; }
{ data1; data2; data3; data4; }
{ data1; data2; data3; data4; }
}
 Benchmark  |  L1 GiB/s  |  L2 GiB/s  |  L3 GiB/s  |
---|---|---|---|
init | 200 | 150 | 100 |
copy | 600 | 400 | 300 |
scale | 200 | 150 | 100 |
reduc | 800 | 600 | 400 |
 Benchmark  |  L1 GiB/s  |  L2 GiB/s  |  L3 GiB/s  |
---|---|---|---|
init | 200 | 150 | 100 |
copy | 600 | 400 | 300 |
scale | 200 | 150 | |
reduc | 800 | 400 |
2.2 - Links
Just like sections, images and figures, tables are named automatically and can be referenced using their anchor (#ID) in a link target as follows:
- /link{ Image1 }{ "#image1" } ==> Image1
- /link{ Figure1 }{ "#figure1" } ==> Figure1
- /link{ Table1 }{ "#table1" } ==> Table1
- /link{ Table2 }{ "#table2" } ==> Table2
Note that the SKRYB compiler performs no verification of link targets. Links can point anywhere!
2.3 - Lists and enumerations
Lists and enumerations are easy to declare. Note that their content cannot be marked and is considered as is. The following code creates the unordered list below:
/list{ This is the first entry; This is the second entry; This is the third entry; }
/enum{ This is the first entry; This is the second entry; This is the third entry; }
2.4 - Colors
In order to set the color for a given text, you can use the /color{ COLOR }{ TEXT } marker. For example:
- /color{ red } { Hello, World! } --> Hello, World!
- /color{ green } { /bold{ Hello, World! }} --> Hello, World!
- /color{ yellow } { /italic{ Hello, World! }} --> Hello, World!
- /color{ blue } { /italic{ /bold{ Hello, World! }}} --> Hello, World!
Note that the color of links cannot be bypassed using this marker.
An emacs LISP script is provided in order to add a skryb-mode with syntax highlighting to the emacs editor. The script's code is shown in the figure below:
Figure 2: SKRYB syntax highlighting LISP script
Image 2: SKRYB syntax highlighting in emacs
The SKRYB compiler is a straightforward source-to-source translator that generates the final HTML code on-the-fly while parsing the input SKRYB file. The compiler has no notion of what a line is and if the SKRYB code contains an error, the compiler will return a message containing only the module and the type of error. Sometimes, syntax errors can cause other errors than those expected but errors will always be detected. Given that the compiler is straightforward, if the translation fails, an incomplete HTML file is still generated.
Keep in mind that the current compiler is just a functional prototype that will eventually change over time. For now, it does the job well and serves as a testbed for exploring different ideas and generating decent HTML reports.
The only two features I am considering for the moment are:
If you have reached this section, well, you are now capable of using SKRYB to write your own documentation. If you find any bugs, typos, please report them to the email provided above using the subject [SKRYB BUG]. Make sure to include the SKRYB files and a detailed description of the steps to reproduce the bug.
The SKRYB source code of this document is available here: SKRYB.skryb
SKRYB is under the GPLv3 license and the compiler is only distributed in source form.
1. Introduction
2. Examples
3. Emacs mode
4. The SKRYB compiler/translator
5. Future features
6. Conclusion