Org writer: add drawer capability
For the implementation of the Drawer element in the Org Writer, we make use of a generic Block container with attributes. The presence of a `drawer` class defines that the `Div` constructor is a drawer. The first class defines the drawer name to use. The key-value list in the attributes defines the keys to add inside the Drawer. Lastly, the list of Block elements contains miscellaneous blocks elements to add inside of the Drawer. Signed-off-by: Albert Krewinkel <albert@zeitkraut.de>
This commit is contained in:
parent
a4717c2fc5
commit
5667e0959a
1 changed files with 11 additions and 0 deletions
|
@ -110,6 +110,17 @@ isRawFormat f =
|
|||
blockToOrg :: Block -- ^ Block element
|
||||
-> State WriterState Doc
|
||||
blockToOrg Null = return empty
|
||||
blockToOrg (Div (_,classes@(cls:_),kvs) bs) | "drawer" `elem` classes = do
|
||||
contents <- blockListToOrg bs
|
||||
let drawerNameTag = ":" <> text cls <> ":"
|
||||
let keys = vcat $ map (\(k,v) ->
|
||||
":" <> text k <> ":"
|
||||
<> space <> text v) kvs
|
||||
let drawerEndTag = text ":END:"
|
||||
return $ drawerNameTag $$ cr $$ keys $$
|
||||
blankline $$ contents $$
|
||||
blankline $$ drawerEndTag $$
|
||||
blankline
|
||||
blockToOrg (Div attrs bs) = do
|
||||
contents <- blockListToOrg bs
|
||||
let startTag = tagWithAttrs "div" attrs
|
||||
|
|
Loading…
Reference in a new issue