orgmode-0.1.0.1: Org Mode library for haskell

Safe HaskellNone
LanguageHaskell2010

Data.OrgMode.OrgDocView

Synopsis

Documentation

data OrgDocView a Source

Constructors

OrgDocView 

Fields

ovElements :: [(a, Node)]
 
ovDocument :: OrgDoc
 

Instances

class Eq a => NodeUpdate a where Source

Generic visitor for updating a Node's values. Intentionally, we don't allow node deletion, just update. Preferably, if you want to delete a Node, you should control the parent. We also have findItemInNode which will construct an a from the Node, which we may then update against a list.