Add required pandoc version and a structure comment.

This commit is contained in:
Maxim Reznik 2025-05-12 22:40:35 +03:00
parent ef2f6df2b0
commit 1c3d56ed30
2 changed files with 12 additions and 1 deletions

View File

@ -2,9 +2,13 @@
These scripts convert the WiKi book to ada-lang.io markdown. These scripts convert the WiKi book to ada-lang.io markdown.
## Requirements
You need `pandoc-2.9.2.1`, `curl`, `sed` installed.
## Build and run ## Build and run
You need `pandoc`, `curl`, `sed` installed. Build a pandoc filter with Alire: Build a pandoc filter with Alire:
alr build alr build

View File

@ -98,6 +98,13 @@ procedure Aqs2mdx is
-- Flatting tables because no multiline tables in .md -- Flatting tables because no multiline tables in .md
declare declare
-- Table structure in pandoc-types-1.20. See
-- https://hackage.haskell.org/package/pandoc-types-1.20/docs/
-- Text-Pandoc-Definition.html
--
-- 1 2 3 4 5
-- Table [Inline] [Alignment] [Double] [TableCell] [[TableCell]]
Content : constant League.JSON.Arrays.JSON_Array := Content : constant League.JSON.Arrays.JSON_Array :=
Block (+"c").To_Array; Block (+"c").To_Array;