diff --git a/README.md b/README.md index c53c518..a5c2945 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ Markup language ecosystem сombining small file size, big number of possibilities for describing the interface and readability. [Specification](./specification/main.md). +[Rust implementation](https://github.com/TxtDot/dalet-rs) > [!WARNING] > Specification is not complete and very unstable. diff --git a/specification/tags.md b/specification/tags.md index 14ca6c9..b705885 100644 --- a/specification/tags.md +++ b/specification/tags.md @@ -535,3 +535,20 @@ Creates code block. ```txt code[js]: let code = "js" ``` + +## 29. Pre-formatted text + +| Property | Description | +| -------- | -------------- | +| name | pre | +| id | 29 | +| body | text | +| argument | no | + +Creates pre formatted text block. Like code but without style and highlight. + +**Daleth example**: + +```txt +pre: I am pre +```