SKRYB

authors: yaspr
contact: yaspr@pm.me

date: 2024-10-23 14:04:35

keywords: SKRYB, HTML, SKRYB2HTML, markup, documentation-format, article-format

abstract

This document describes the version 1.0 of SKRYB, a simple and intuitive markup language for writing documentation and technical articles. The SKRYB source of this document is self-explanatory!

1. Introduction

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:

  1. title
  2. authors
  3. contacts
  4. date
  5. abstract
Each field is mandatory and must be in the specified order, otherwise, the compiler will return an error. The header fields are specified using the following markers:

--> /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! }


The following figure is the result in HTML:

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


The following markers are not mandatory and can be placed anywhere before, after, or between sections. Their purpose is to signal to the compiler that an index section and a copyright footer must be generated at the end of the HTML document:

--> /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. Examples

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 
init200150100
copy600400300
scale200150100
reduc800600400
Table 1: A conventional table

Tables can be declared with empty slots but all rows must contain the same number of columns. The field can remain empty but the ';' separator must occur. The following is an example of a sparse table:

 Benchmark  L1 GiB/s  L2 GiB/s  L3 GiB/s 
init200150100
copy600400300
scale200150
reduc800400
Table 2: A sparse table


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; }

The following is an example of an enumeration (or ordered list):

/enum{ This is the first entry; This is the second entry; This is the third entry; }

  1. This is the first entry created using /enum{}
  2. This is the second entry /enum{}
  3. This is the third entry /enum{}


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.


3. Emacs mode

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

First, you need to load the emacs script into emacs and run the command eval-buffer : Once the buffer has been evaluated, you can now open a SKRYB document and run the command skryb-mode : Now, the emacs buffer with the SKRYB document content should light up with colors just like in the image below.

Image 2: SKRYB syntax highlighting in emacs


4. The SKRYB compiler/translator

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.


5. Future features

The only two features I am considering for the moment are:

  1. Adding line numbers to compiler error messages
  2. Adding support for subsections

If you have any propositions or requests, you can address them to the email provided above using the subject [SKRYB request].


6. Conclusion

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.


7. Index

7.1. Sections

1. Introduction
2. Examples
3. Emacs mode
4. The SKRYB compiler/translator
5. Future features
6. Conclusion

7.2. Images

Image1
Image2

7.3. Figures

Figure1
Figure2

7.4. Tables

Table1
Table2