The IDK parser is available following Quick use.
All website's web page have this you can click, permiting you to see the IDK page that created it.
For details about the goals of IDK markup go IDK's goals. In short it is designed to be easy to read, write and encode complex data.
The markup is in active development and is still in alpha, check the IDK's todos to see what is coming and which bugs have to be fixed.
All the text components described below are available everywhere, only context have narower possibility (see Context section).
Whitespace count indentation determined the text block type.Heading 2 // none __paragraph // 2 ____Heading 3 // 4 ______paragraph // 6 ________Heading 4 // 8 __________paragraph // 10 ____________Heading 5 // 12 ______________paragraph // 14
All local and uri links can be validated by the parser when asked, resulting on wrong link as below:
"https://a_wrong_http_url.com"(a wrong http url)
"/wrong/file/path/wrong.txt"(a wrong file path)
"/softwares/softwares.idk[#100]"(wrong internal link)
This is a uri link. "https://axeldaguerre.com"(uri link)
This is a file link. "/assets/files/idk_documentation/table_1.csv"(file link)
We can either mention other idk file's internal link. "/softwares/softwares.idk[#1]"(other idk file's internal link)
Setting a specific name for the file can be done that way: axeldaguerre.com
By prefixing a link with _
it can be displayed on the document, you can specify its dimension and a description: _"/idk/idk_documentation/idk_documentation_img_1.jpeg"(30x30, "from my town, Capbreton.")
Everywhere.
A bold text. _bold text_
A italic text. __italic text__
Everywhere.
Block list is available using combinaison of .
with combinaison of character, on new line.
When list are modified frequently it is convenient to only set the first item's ordering number and let the parser derived the following item's ordering number.
There is no restriction on the number of sublist and list's items. We can either mix the three types of list available inside the entire list. Automatic ordering works there too.i. first alpha. 1. first numeric 1. . second numeric 2. . first unordered. . second unordered. . second alpha. . third alpha.
We can write inlined list as follow: 1.item one 2.item two 3.item three. 1. item one 2. item two 3. item three. (at least three bullets, either numeric OR alpha type)
.
The markup will analyze the potential list, if only one item is written, it will set it as regular text.
A block text can be a plain text or data structured text. All the whitespace inside it is preserved.
The text will keep all its // comment are not displayed. whitespace. We are able to write potential clashing tokens like this <button>button</button> displayed inside HTML document.Note: in the future, syntax highlighting will be possible on specific texts.
We are able to escape any reserved token by preceding it by "\". Like here: this is NOT _a bold text_. NOT \_a bold text\_
IDK allow to write tables which are understood internally, there are not just for display.
All tables types allow to have multiple side tables. It process all tables that are right to the first one and set them as side tables (see below 4).
Best for readability.|==================================================================================================| | Feature | IDK [x] | HTML | Markdown | XML | LaTeX | |==================================================================================================| | Readability | High | Medium | High | Low | Low | |--------------------------------------------------------------------------------------------------| | Complexity | Low | High | Low | High | High | |--------------------------------------------------------------------------------------------------| | Use Case | Semantic/Data | Web | Docs | Data | Papers | |--------------------------------------------------------------------------------------------------| | Formatting | Limited | Full | Limited | None | Advanced | |------------------------------------------------------------ -------------------------------------| | Extensibility | Low | High | Low | High | High | |--------------------------------------------------------------------------------------------------| | Learning Curve | Easy | Steep | Easy | Steep | Steep | |--------------------------------------------------------------------------------------------------| | Bold | `_Bold_` | `<b>Bold</b>`| `**Bold**` | `<b></b>`| `\textbf{}` | |--------------------------------------------------------------------------------------------------| | Images | `_"your_link"()`| `<img>` | `![Alt]()` | `<img>` | `\includegraphics{}` | |--------------------------------------------------------------------------------------------------| | Lists | `. item` | `<ul><li>` | `- Item` | `<list>` | `\begin{itemize}` | |--------------------------------------------------------------------------------------------------| | Links | `"your_link"()` | `<a href="">`| `[Txt]()` | `<link>` | `\href{}` | |--------------------------------------------------------------------------------------------------|
Feature | IDK | HTML | Markdown | XML | LaTeX |
---|---|---|---|---|---|
Readability | High | Medium | High | Low | Low |
Complexity | Low | High | Low | High | High |
Use Case | Semantic/Data | Web | Docs | Data | Papers |
Formatting | Limited | Full | Limited | None | Advanced |
Extensibility | Low | High | Low | High | High |
Learning Curve | Easy | Steep | Easy | Steep | Steep |
Bold | _Bold_ | <b>Bold</b> | **Bold** | <b></b> | \textbf{} |
Images | _"your_link"() | <img> | ![Alt]() | <img> | \includegraphics{} |
Lists | . item | <ul><li> | - Item | <list> | \begin{itemize} |
Links | "your_link"() | <a href=""> | [Txt]() | <link> | \href{} |
Short but not the best for readability.| Feature | IDK [x] | Markdown | | Bold | `_Bold_` | `**Bold**` | | Italic | `__Bold__` | `*Italic*` | | link | `"link.com"` or `"link.com"(link)` | `[text](link.com)` | | Heading | derived from indentation | use of `#` | | Image | `"image_link.jpg"` or `"image_link.jpg"(image properties)` | `` | | List | use of `.`, `a.`, `1.` | use of `-`, `a.`, `1.` | | Block | ` \```block text\``` ` | ` \```block text\``` ` | | Footnote | `[*1]` without indentation. | `[^1]:` | | Footnote's | `[*1]` inside a text. | `[^1]` inside a text. | | reference | | | | Internal | `text [#1]_` | `text {#1}` | | link | | | | Internal | `[#1]` or `[#1](link name)` | `[link name](#1)` | | link's | | | | reference | | |
Feature | IDK | Markdown |
---|---|---|
Bold | _Bold_ | **Bold** |
Italic | __Bold__ | *Italic* |
link | "link.com" or "link.com"(link) | [text](link.com) |
Heading | derived from indentation | use of # |
Image | "image_link.jpg" or "image_link.jpg"(image properties) |  |
List | use of . , a. , 1. | use of - , a. , 1. |
Block | ```block text``` | ```block text``` |
Footnote | [*1] without indentation. | [^1]: |
Footnote's reference | [*1] inside a text. | [^1] inside a text. |
Internal link | text [#1]_ | text {#1} |
Internal link's reference | [#1] or [#1](link name) | [link name](#1) |
File format used almost everywhere, great to work with files and tools producing them. ;Feature; IDK [x]; Pandoc; ;Feature; IDK [x]; Pandoc; inlined list; yes; no; side by side table; yes; no; table's cell selection; yes; no; link checker; yes; no; HTML conversion; yes; yes; discussion; yes; no; context; yes; no; table's row on multiple lines; all types except CSV; grid tables only;
Feature | IDK | Pandoc |
---|---|---|
inlined list | yes | no |
table's cell selection | yes | no |
HTML conversion | yes | yes |
context | yes | no |
Feature | IDK | Pandoc |
---|---|---|
side by side table | yes | no |
link checker | yes | no |
discussion | yes | no |
table's row on multiple lines | all types except CSV | grid tables only |
C1 | C2 | C3 |
---|---|---|
row1 c1 t1 info row1 c1 | row1 c2 t1 info row1 c2 | row1 c3 t1 info row1 c3 |
row2 c1 t1 info row2 c1 | row2 c2 t1 info row2 c2 | row2 c3 t1 info row2 c3 |
C1 | C2 | C3 |
---|---|---|
row1 c1 t2 info row1 c1 | row1 c2 t2 info row1 c2 | row1 c3 t2 info row1 c3 |
row2 c1 t2 info row2 c1 | row2 c2 t2 info row2 c2 | row2 c3 t2 info row2 c3 |
---
.[x]
.|
or ;
make the table start.|
or ;
can be ommited.;
on new table's first line when not used with files but directly written (as seen on above example).Note: Table will be an important structure inside the markup, they will have extensive possibility and have real data types.
A text's context is targeting the last text block, which is a paragraph or a heading. It will be visually appended at the end of it.
Context is a crucial part of IDK markup. It is a way to have a text which add details on the previous text written. It will not be a part of the text (not directly visible when you read the text). Instead, reader is able to interact in order to read it, which permit better readability. When converted to HTML, it means that a button is clickable that enable the reader to see it.
It is used to add details on how the previous text was written. Great for quick notes, writer is able to convey informations on the conditions it was written.Heading 2paragraphHeading 3paragraphHeading 4paragraphHeading 5paragraph
Context is available inlined too:
This is a text in which we append a context 2023/11/13 this is a text www.axeldaguerre.com.
Same stuff is available to it than normal context except text level (headings and paragraph), eveything is regular text. This is an unformated text hello unformated
IDK permit to represent a discussion thread, it does understand it internally, it is not just for display.
By using combinations of >
and <
and indentation, a whole discussion can be represented.
NOTE: "<" does not have different meaning than ">", it is used for better readability if wanted. "|" are not mandatory and is used for readability too.
Context 1 is available inside each quotes.
When we do not want to use context inlined because their make reading complicated when too long, we can use transcripts which does similar.
Let's say we write a text and we decide to append a 1. This is not a regular footnote, because writer can append it anywhere in the document, but the function is the same, and keeps the same possibilibilities than context.
some text are written ...
Footnotes can be inside table's cell, table's column and text block.
They permit to reference a link inside the same document. It goes this way: we reference here 1, you can add descriptive link by appending () to it like CSV table.
We allow to have link inside regular text 2 and on title 1 or inside a table cell 8.
Because one of the IDK markup's goals is to be able to write text without fancy text editor, we want the link to be easily searchable when link reference is encountered, so we just add a _ to the link to differentiate them.
Internal links can be inside table's cell, table's column and text block.
Checkbox permit to set a component as checked on unckecked and have special meaning depending on the component on which it is appended. For example, on table's cell it will set the cell or the entire table's column as selected (see table's examples above). [x] and []
Displayed as or
Sometimes you want to write pure text which potentially can be interpreted by a program, like HTML parser.
You can do it inlined too :
If a footnote 2 or an internal link 3 reference does not have a matching definition, the link is set as broken and user is warned.
Because one of the main goals is to be easy to write, the parse is consistenly trying to make assertions when it can. To name a few: like not having new line between text block and a table will end the table.
It always avoid critical error on ambigous document and will prefer warnings.
Science knows a lot about how humans read. Since 1960 scientific have made several studies which can help to enhance reading experience. The output formats (HTML currently) tries to use a bit of the well backed ones. Not more than ~66 Characters per line, font build for readability on digital devices, font size and more. Sometimes it feels wrong, but because we can't directly feel it without being a skilled reader, we should not rely on our senses about this subject.