= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
type block = [
|
`S of string
|
`P of string
|
`Pre of string
|
`I of string * string
|
`Noblank
|
`Blocks of block list
]
type command = {
cmd_name : string;
cmd_action : unit -> unit;
cmd_args : arg_list;
cmd_man : block list;
cmd_doc : string;
}