Changes between Version 11 and Version 12 of LibYAML
- Timestamp:
- 08/01/06 08:05:38 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LibYAML
v11 v12 7 7 8 8 == Download and Installation == 9 10 The current release of LibYAML: '''0.0.1 (2006-08-01)'''. 11 12 Download source package: http://pyyaml.org/download/libyaml/yaml-0.0.1.tar.gz. 13 14 To build and install LibYAML, run 15 {{{ 16 $ ./configure 17 $ make 18 # make install 19 }}} 9 20 10 21 You may check out the latest development code of LibYAML from the Subversion repository … … 38 49 [http://lists.sourceforge.net/lists/listinfo/yaml-core the YAML-core mailing list]. 39 50 40 41 == Scope == 51 == Documentation == 52 53 === Scope === 42 54 43 55 LibYAML covers ''presenting'' and ''parsing'' [http://yaml.org/spec/cvs/current.html#id859458 processes]. … … 58 70 59 71 60 == Events==61 62 === Event Types===72 === Events === 73 74 ==== Event Types ==== 63 75 64 76 The Parser produces while the Emitter accepts the following types of events: … … 84 96 }}} 85 97 86 === Essential Event Attributes===98 ==== Essential Event Attributes ==== 87 99 88 100 The following attributes affect the intepretation of a YAML document. … … 111 123 * `implicit` - `True` if the node tag may be omitted. 112 124 113 === Stylistic Event Attributes===125 ==== Stylistic Event Attributes ==== 114 126 115 127 The following attributes don't affect the interpretation of a YAML document. While parsing a YAML … … 140 152 `line` and `column` (starting from `0`). 141 153 142 143 == Documentation == 154 === API === 144 155 145 156 Note: the API may change drastically. You may also check the header file: 146 157 http://pyyaml.org/browser/libyaml/trunk/include/yaml.h. 147 158 148 === Parser API Synopsis===159 ==== Parser API Synopsis ==== 149 160 150 161 {{{ … … 213 224 }}} 214 225 215 === Emitter API Synopsis===226 ==== Emitter API Synopsis ==== 216 227 217 228 {{{
