Module Values.LexiconSource

Provides lexicon name and lexicon content in string format. For more information, see Pronunciation Lexicon Specification (PLS) Version 1.0.

Sourcetype nonrec t = {
  1. content : LexiconContent.t option;
    (*

    Lexicon content in string format. The content of a lexicon must be in PLS format.

    *)
  2. name : LexiconName.t option;
    (*

    Name of the lexicon.

    *)
}
Sourceval make : ?content:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LexiconContent.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t