package csvfields

  1. Overview
  2. Docs
Runtime support for ppx_xml_conv and ppx_csv_conv

Install

Dune Dependency

Authors

Maintainers

Sources

csvfields-v0.14.0.tar.gz
sha256=cf86add2987a1ad2891fa72f941165411f62dc0a433ce57fbc4f1e914f3750b9
md5=414b2dfea05667d13f31a2e8eb6823e6

doc/src/csvfields.xml-light/dtd0.ml.html

Source file dtd0.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

type dtd_child = Types.dtd_child =
	| DTDTag of string
	| DTDPCData
	| DTDOptional of dtd_child
	| DTDZeroOrMore of dtd_child
	| DTDOneOrMore of dtd_child
	| DTDChoice of dtd_child list
	| DTDChildren of dtd_child list

type dtd_element_type = Types.dtd_element_type =
	| DTDEmpty
	| DTDAny
	| DTDChild of dtd_child

type dtd_attr_default = Types.dtd_attr_default =
	| DTDDefault of string
	| DTDRequired
	| DTDImplied
	| DTDFixed of string

type dtd_attr_type = Types.dtd_attr_type =
	| DTDCData
	| DTDNMToken
	| DTDEnum of string list
	| DTDID
	| DTDIDRef

type dtd_item = Types.dtd_item =
	| DTDAttribute of string * string * dtd_attr_type * dtd_attr_default
	| DTDElement of string * dtd_element_type

type dtd = dtd_item list

OCaml

Innovation. Community. Security.