Accept comma separated converter names, separate Atom from Html and Gemini converters.

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
This commit is contained in:
fox
2022-10-26 19:36:02 +00:00
parent 02937307f3
commit 39e9796a6e
5 changed files with 55 additions and 55 deletions

View File

@@ -9,6 +9,6 @@ type t = {
type fn_t = {
ext: string;
page: t -> Logarion.Text.t -> string;
indices: t -> unit;
page: (t -> Logarion.Text.t -> string) option;
indices: (t -> unit) option;
}