
Note: atom must be called separately now because of the separation. Example txt convert -t htm,atom xyz git-svn-id: file:///srv/svn/repo/kosuzu/trunk@19 eb64cd80-c68d-6f47-b6a3-0ada418499da
15 lines
289 B
OCaml
15 lines
289 B
OCaml
open Logarion
|
|
type t = {
|
|
id: string; dir: string;
|
|
kv: string Store.KV.t;
|
|
topic_roots: string list;
|
|
topics: (String_set.t * String_set.t) Topic_set.Map.t;
|
|
texts: Text.t list
|
|
}
|
|
|
|
type fn_t = {
|
|
ext: string;
|
|
page: (t -> Logarion.Text.t -> string) option;
|
|
indices: (t -> unit) option;
|
|
}
|