Table of Contents

    1. Interscript Version
    2. Introduction
       2.1. Interscript
       2.2. Features
          2.2.1. Python Scripting
          2.2.2. Platform independent filenames
          2.2.3. Documentation Constructions
             2.2.3.1. Automatic heading numbering
             2.2.3.2. Cross references
             2.2.3.3. Tables
             2.2.3.4. Nestable Lists
             2.2.3.5. URL citation
             2.2.3.6. Code and Prose displays
             2.2.3.7. Basic font selection
          2.2.4. Advanced Web Weaving
             2.2.4.1. Automatic pagination on headings
             2.2.4.2. Syntax Highlighting
             2.2.4.3. CSS1 Cascading Style Sheets
             2.2.4.4. Folding Table of Contents
             2.2.4.5. Frame presentation
             2.2.4.6. Flexible navigation
             2.2.4.7. Table of classes
             2.2.4.8. Table of functions
             2.2.4.9. Table of identifiers
             2.2.4.10. Table of sections
             2.2.4.11. Table of tests
             2.2.4.12. Convergence status
             2.2.4.13. Source tree
          2.2.5. PerlPOD support
          2.2.6. Extensive Python Support
          2.2.7. Latex, Plain text and flat Html Weavers
          2.2.8. Html input filter
          2.2.9. XML support planned
          2.2.10. Unit testing
             2.2.10.1. Test output verification
          2.2.11. Option help
          2.2.12. Tutorial
          2.2.13. Statement of Requirements
          2.2.14. Design Document
          2.2.15. Full source listing
    3. Requirements
       3.1. Functionality
          3.1.1. Tangling
             3.1.1.1. Supported Programming Languages
             3.1.1.2. Source Tracking
                3.1.1.2.1. C and C++
             3.1.1.3. Chunking
             3.1.1.4. Parsing for reference tables
                3.1.1.4.1. Tokenisable Languages
                   3.1.1.4.1.1. Identifier reference
                3.1.1.4.2. Fully Parsable Languages
                3.1.1.4.3. Partially Parsable Languages
                   3.1.1.4.3.1. Class reference
                3.1.1.4.4. Function reference
             3.1.1.5. Parsing for embedded documentation
                3.1.1.5.1. Perl DOC
                3.1.1.5.2. Java DOC
                3.1.1.5.3. Eiffel
                3.1.1.5.4. Python Doc strings
             3.1.1.6. Internationalisation
          3.1.2. Weaving
             3.1.2.1. Individual Weavers
             3.1.2.2. Individual weaver capabilities
                3.1.2.2.1. Fonts
                3.1.2.2.2. Lists
                3.1.2.2.3. Displays
                3.1.2.2.4. Tables
                3.1.2.2.5. Headings
                3.1.2.2.6. Code echo
                3.1.2.2.7. Citations
             3.1.2.3. Internationalisation
          3.1.3. Building
             3.1.3.1. Python hosting
             3.1.3.2. Compilers
                3.1.3.2.1. CPython
                3.1.3.2.2. JPython
             3.1.3.3. Diff/Patch
             3.1.3.4. Executing external tools
       3.2. Interface
          3.2.1. Unified command interface
       3.3. Management
          3.3.1. Software Metrics
             3.3.1.1. Change Impact Analysis
             3.3.1.2. Measuring Change Impact
          3.3.2. Programming metrics
       3.4. Implementation pragmatics
    4. Design Fundamentals
       4.1. Devices
          4.1.1. File names
             4.1.1.1. Named File Source Names
             4.1.1.2. Named File Sink Names
       4.2. Processors
       4.3. Tanglers
       4.4. Lexical Scoping
       4.5. Weaver Control
       4.6. Source Tracking
       4.7. Parsing
       4.8. Documentation Constructions
       4.9. Microformatting shortcuts
       4.10. Weaver Architecture
          4.10.1. Multiple Typesetters
             4.10.1.1. Raw output
          4.10.2. Multiple Human Languages
          4.10.3. Multiple Documents
          4.10.4. Cumulated Appendices
    5. Tutorial
       5.1. Weaving a document
          5.1.1. Headings
          5.1.2. Separating paragraphs
          5.1.3. Line and Page breaks
          5.1.4. Displaying code examples
          5.1.5. Running Interscript
             5.1.5.1. Option help
             5.1.5.2. Passes
             5.1.5.3. Tangling parts
       5.2. Tangling code
          5.2.1. Tangler Constructors
          5.2.2. Original Source References
          5.2.3. Code sections
       5.3. Scripting
          5.3.1. Long script sections
          5.3.2. Very Long script sections
       5.4. Unit tests
          5.4.1. Weaver Control
          5.4.2. Perl hates @
       5.5. Fonts
       5.6. Lists
          5.6.1. Easier lists
       5.7. Tables
       5.8. Citations
       5.9. Cross References
       5.10. Including Files
          5.10.1. Including code
          5.10.2. Displaying Code
       5.11. Translating Html
       5.12. Special constructions
          5.12.1. Table of Contents
          5.12.2. Identifier Index
          5.12.3. File list
          5.12.4. Source list
          5.12.5. The Web Weaver
             5.12.5.1. Automatic table generation
             5.12.5.2. Mandatory Frames
             5.12.5.3. Internet Explorer DHTML support
             5.12.5.4. Cascading Style Sheets
       5.13. File Names
       5.14. Questions and Answers
          5.14.1. Why are HTML tags printed verbatim, even by the html weaver?
          5.14.2. OK, so how do I put HTML into a document?
             5.14.2.1. Tag method
             5.14.2.2. Cheat method 1
             5.14.2.3. Cheat method 2
          5.14.3. How can I use existing HTML as a source?
          5.14.4. Isn't it hard to create an HTML filter?
          5.14.5. Why are blank lines ignored?
          5.14.6. Why do I get multiple spaces in my document?
          5.14.7. The indentation of my programs is all wrong. Why?
          5.14.8. How do I get existing code into Interscript?
          5.14.9. What if I just want to print it?
          5.14.10. How do I debug Interscript
    6. Implementation
       6.1. Interscript Module
          6.1.1. Construct Global Frame
          6.1.2. Set version
          6.1.3. Listing of iscr.pak source
       6.2. Core Subpackage
          6.2.1. Sets
             6.2.1.1. Test source
             6.2.1.2. Test output
          6.2.2. Stack
          6.2.3. protocol module
             6.2.3.1. Standard Protocol Rules
             6.2.3.2. Source
             6.2.3.3. Test
       6.3. Character set encodings
          6.3.1. Representation
       6.4. Unicode Data
          6.4.1. Character Tables
             6.4.1.1. Range 0000-00ff
             6.4.1.2. Range 0100-01ff
             6.4.1.3. Range 0200-02ff
             6.4.1.4. Range 0300-03ff
             6.4.1.5. Range 0400-04ff
             6.4.1.6. Range 0500-05ff
             6.4.1.7. Range 0600-06ff
             6.4.1.8. Range 0700-07ff
             6.4.1.9. Range 0800-08ff
             6.4.1.10. Range 0900-09ff
             6.4.1.11. Range 0a00-0aff
             6.4.1.12. Range 0b00-0bff
             6.4.1.13. Range 0c00-0cff
             6.4.1.14. Range 0d00-0dff
             6.4.1.15. Range 0e00-0eff
             6.4.1.16. Range 0f00-0fff
             6.4.1.17. Range 1000-10ff
             6.4.1.18. Range 1100-11ff
             6.4.1.19. Range 1200-12ff
             6.4.1.20. Range 1300-13ff
             6.4.1.21. Range 1400-14ff
             6.4.1.22. Range 1500-15ff
             6.4.1.23. Range 1600-16ff
             6.4.1.24. Range 1700-17ff
             6.4.1.25. Range 1800-18ff
             6.4.1.26. Range 1900-19ff
             6.4.1.27. Range 1a00-1aff
             6.4.1.28. Range 1b00-1bff
             6.4.1.29. Range 1c00-1cff
             6.4.1.30. Range 1d00-1dff
             6.4.1.31. Range 1e00-1eff
             6.4.1.32. Range 1f00-1fff
             6.4.1.33. Range 2000-20ff
             6.4.1.34. Range 2100-21ff
             6.4.1.35. Range 2200-22ff
             6.4.1.36. Range 2300-23ff
             6.4.1.37. Range 2400-24ff
             6.4.1.38. Range 2500-25ff
             6.4.1.39. Range 2600-26ff
             6.4.1.40. Range 2700-27ff
             6.4.1.41. Range 2800-28ff
             6.4.1.42. Range 2900-29ff
             6.4.1.43. Range 2a00-2aff
             6.4.1.44. Range 2b00-2bff
             6.4.1.45. Range 2c00-2cff
             6.4.1.46. Range 2d00-2dff
             6.4.1.47. Range 2e00-2eff
             6.4.1.48. Range 2f00-2fff
             6.4.1.49. Range 3000-30ff
             6.4.1.50. Range 3100-31ff
             6.4.1.51. Range 3200-32ff
             6.4.1.52. Range 3300-33ff
             6.4.1.53. Range 3400-34ff
             6.4.1.54. Range 3500-35ff
             6.4.1.55. Range 3600-36ff
             6.4.1.56. Range 3700-37ff
             6.4.1.57. Range 3800-38ff
             6.4.1.58. Range 3900-39ff
             6.4.1.59. Range 3a00-3aff
             6.4.1.60. Range 3b00-3bff
             6.4.1.61. Range 3c00-3cff
             6.4.1.62. Range 3d00-3dff
             6.4.1.63. Range 3e00-3eff
             6.4.1.64. Range 3f00-3fff
             6.4.1.65. Range 4000-40ff
             6.4.1.66. Range 4100-41ff
             6.4.1.67. Range 4200-42ff
             6.4.1.68. Range 4300-43ff
             6.4.1.69. Range 4400-44ff
             6.4.1.70. Range 4500-45ff
             6.4.1.71. Range 4600-46ff
             6.4.1.72. Range 4700-47ff
             6.4.1.73. Range 4800-48ff
             6.4.1.74. Range 4900-49ff
             6.4.1.75. Range 4a00-4aff
             6.4.1.76. Range 4b00-4bff
             6.4.1.77. Range 4c00-4cff
             6.4.1.78. Range 4d00-4dff
             6.4.1.79. Range 4e00-4eff
             6.4.1.80. Range 4f00-4fff
             6.4.1.81. Range 5000-50ff
             6.4.1.82. Range 5100-51ff
             6.4.1.83. Range 5200-52ff
             6.4.1.84. Range 5300-53ff
             6.4.1.85. Range 5400-54ff
             6.4.1.86. Range 5500-55ff
             6.4.1.87. Range 5600-56ff
             6.4.1.88. Range 5700-57ff
             6.4.1.89. Range 5800-58ff
             6.4.1.90. Range 5900-59ff
             6.4.1.91. Range 5a00-5aff
             6.4.1.92. Range 5b00-5bff
             6.4.1.93. Range 5c00-5cff
             6.4.1.94. Range 5d00-5dff
             6.4.1.95. Range 5e00-5eff
             6.4.1.96. Range 5f00-5fff
             6.4.1.97. Range 6000-60ff
             6.4.1.98. Range 6100-61ff
             6.4.1.99. Range 6200-62ff
             6.4.1.100. Range 6300-63ff
             6.4.1.101. Range 6400-64ff
             6.4.1.102. Range 6500-65ff
             6.4.1.103. Range 6600-66ff
             6.4.1.104. Range 6700-67ff
             6.4.1.105. Range 6800-68ff
             6.4.1.106. Range 6900-69ff
             6.4.1.107. Range 6a00-6aff
             6.4.1.108. Range 6b00-6bff
             6.4.1.109. Range 6c00-6cff
             6.4.1.110. Range 6d00-6dff
             6.4.1.111. Range 6e00-6eff
             6.4.1.112. Range 6f00-6fff
             6.4.1.113. Range 7000-70ff
             6.4.1.114. Range 7100-71ff
             6.4.1.115. Range 7200-72ff
             6.4.1.116. Range 7300-73ff
             6.4.1.117. Range 7400-74ff
             6.4.1.118. Range 7500-75ff
             6.4.1.119. Range 7600-76ff
             6.4.1.120. Range 7700-77ff
             6.4.1.121. Range 7800-78ff
             6.4.1.122. Range 7900-79ff
             6.4.1.123. Range 7a00-7aff
             6.4.1.124. Range 7b00-7bff
             6.4.1.125. Range 7c00-7cff
             6.4.1.126. Range 7d00-7dff
             6.4.1.127. Range 7e00-7eff
             6.4.1.128. Range 7f00-7fff
             6.4.1.129. Range 8000-80ff
             6.4.1.130. Range 8100-81ff
             6.4.1.131. Range 8200-82ff
             6.4.1.132. Range 8300-83ff
             6.4.1.133. Range 8400-84ff
             6.4.1.134. Range 8500-85ff
             6.4.1.135. Range 8600-86ff
             6.4.1.136. Range 8700-87ff
             6.4.1.137. Range 8800-88ff
             6.4.1.138. Range 8900-89ff
             6.4.1.139. Range 8a00-8aff
             6.4.1.140. Range 8b00-8bff
             6.4.1.141. Range 8c00-8cff
             6.4.1.142. Range 8d00-8dff
             6.4.1.143. Range 8e00-8eff
             6.4.1.144. Range 8f00-8fff
             6.4.1.145. Range 9000-90ff
             6.4.1.146. Range 9100-91ff
             6.4.1.147. Range 9200-92ff
             6.4.1.148. Range 9300-93ff
             6.4.1.149. Range 9400-94ff
             6.4.1.150. Range 9500-95ff
             6.4.1.151. Range 9600-96ff
             6.4.1.152. Range 9700-97ff
             6.4.1.153. Range 9800-98ff
             6.4.1.154. Range 9900-99ff
             6.4.1.155. Range 9a00-9aff
             6.4.1.156. Range 9b00-9bff
             6.4.1.157. Range 9c00-9cff
             6.4.1.158. Range 9d00-9dff
             6.4.1.159. Range 9e00-9eff
             6.4.1.160. Range 9f00-9fff
             6.4.1.161. Range a000-a0ff
             6.4.1.162. Range a100-a1ff
             6.4.1.163. Range a200-a2ff
             6.4.1.164. Range a300-a3ff
             6.4.1.165. Range a400-a4ff
             6.4.1.166. Range a500-a5ff
             6.4.1.167. Range a600-a6ff
             6.4.1.168. Range a700-a7ff
             6.4.1.169. Range a800-a8ff
             6.4.1.170. Range a900-a9ff
             6.4.1.171. Range aa00-aaff
             6.4.1.172. Range ab00-abff
             6.4.1.173. Range ac00-acff
             6.4.1.174. Range ad00-adff
             6.4.1.175. Range ae00-aeff
             6.4.1.176. Range af00-afff
             6.4.1.177. Range b000-b0ff
             6.4.1.178. Range b100-b1ff
             6.4.1.179. Range b200-b2ff
             6.4.1.180. Range b300-b3ff
             6.4.1.181. Range b400-b4ff
             6.4.1.182. Range b500-b5ff
             6.4.1.183. Range b600-b6ff
             6.4.1.184. Range b700-b7ff
             6.4.1.185. Range b800-b8ff
             6.4.1.186. Range b900-b9ff
             6.4.1.187. Range ba00-baff
             6.4.1.188. Range bb00-bbff
             6.4.1.189. Range bc00-bcff
             6.4.1.190. Range bd00-bdff
             6.4.1.191. Range be00-beff
             6.4.1.192. Range bf00-bfff
             6.4.1.193. Range c000-c0ff
             6.4.1.194. Range c100-c1ff
             6.4.1.195. Range c200-c2ff
             6.4.1.196. Range c300-c3ff
             6.4.1.197. Range c400-c4ff
             6.4.1.198. Range c500-c5ff
             6.4.1.199. Range c600-c6ff
             6.4.1.200. Range c700-c7ff
             6.4.1.201. Range c800-c8ff
             6.4.1.202. Range c900-c9ff
             6.4.1.203. Range ca00-caff
             6.4.1.204. Range cb00-cbff
             6.4.1.205. Range cc00-ccff
             6.4.1.206. Range cd00-cdff
             6.4.1.207. Range ce00-ceff
             6.4.1.208. Range cf00-cfff
             6.4.1.209. Range d000-d0ff
             6.4.1.210. Range d100-d1ff
             6.4.1.211. Range d200-d2ff
             6.4.1.212. Range d300-d3ff
             6.4.1.213. Range d400-d4ff
             6.4.1.214. Range d500-d5ff
             6.4.1.215. Range d600-d6ff
             6.4.1.216. Range d700-d7ff
             6.4.1.217. Range d800-d8ff
             6.4.1.218. Range d900-d9ff
             6.4.1.219. Range da00-daff
             6.4.1.220. Range db00-dbff
             6.4.1.221. Range dc00-dcff
             6.4.1.222. Range dd00-ddff
             6.4.1.223. Range de00-deff
             6.4.1.224. Range df00-dfff
             6.4.1.225. Range e000-e0ff
             6.4.1.226. Range e100-e1ff
             6.4.1.227. Range e200-e2ff
             6.4.1.228. Range e300-e3ff
             6.4.1.229. Range e400-e4ff
             6.4.1.230. Range e500-e5ff
             6.4.1.231. Range e600-e6ff
             6.4.1.232. Range e700-e7ff
             6.4.1.233. Range e800-e8ff
             6.4.1.234. Range e900-e9ff
             6.4.1.235. Range ea00-eaff
             6.4.1.236. Range eb00-ebff
             6.4.1.237. Range ec00-ecff
             6.4.1.238. Range ed00-edff
             6.4.1.239. Range ee00-eeff
             6.4.1.240. Range ef00-efff
             6.4.1.241. Range f000-f0ff
             6.4.1.242. Range f100-f1ff
             6.4.1.243. Range f200-f2ff
             6.4.1.244. Range f300-f3ff
             6.4.1.245. Range f400-f4ff
             6.4.1.246. Range f500-f5ff
             6.4.1.247. Range f600-f6ff
             6.4.1.248. Range f700-f7ff
             6.4.1.249. Range f800-f8ff
             6.4.1.250. Range f900-f9ff
             6.4.1.251. Range fa00-faff
             6.4.1.252. Range fb00-fbff
             6.4.1.253. Range fc00-fcff
             6.4.1.254. Range fd00-fdff
             6.4.1.255. Range fe00-feff
          6.4.2. Detailed Character Properties
             6.4.2.1. Key
                6.4.2.1.1. General Category
                6.4.2.1.2. Bidirectional Properties
                6.4.2.1.3. Character Decomposition Tags
                6.4.2.1.4. Canonical Combining Classes
                6.4.2.1.5. Case mappings
             6.4.2.2. Block Index
             6.4.2.3. Detailed Property Data
                6.4.2.3.1. 0000-007f Basic Latin
                6.4.2.3.2. 0080-00ff Latin-1 Supplement
                6.4.2.3.3. 0100-017f Latin Extended-A
                6.4.2.3.4. 0180-024f Latin Extended-B
                6.4.2.3.5. 0250-02af IPA Extensions
                6.4.2.3.6. 02b0-02ff Spacing Modifier Letters
                6.4.2.3.7. 0300-036f Combining Diacritical Marks
                6.4.2.3.8. 0370-03ff Greek
                6.4.2.3.9. 0400-04ff Cyrillic
                6.4.2.3.10. 0530-058f Armenian
                6.4.2.3.11. 0590-05ff Hebrew
                6.4.2.3.12. 0600-06ff Arabic
                6.4.2.3.13. 0900-097f Devanagari
                6.4.2.3.14. 0980-09ff Bengali
                6.4.2.3.15. 0a00-0a7f Gurmukhi
                6.4.2.3.16. 0a80-0aff Gujarati
                6.4.2.3.17. 0b00-0b7f Oriya
                6.4.2.3.18. 0b80-0bff Tamil
                6.4.2.3.19. 0c00-0c7f Telugu
                6.4.2.3.20. 0c80-0cff Kannada
                6.4.2.3.21. 0d00-0d7f Malayalam
                6.4.2.3.22. 0e00-0e7f Thai
                6.4.2.3.23. 0e80-0eff Lao
                6.4.2.3.24. 0f00-0fbf Tibetan
                6.4.2.3.25. 10a0-10ff Georgian
                6.4.2.3.26. 1100-11ff Hangul Jamo
                6.4.2.3.27. 1e00-1eff Latin Extended Additional
                6.4.2.3.28. 1f00-1fff Greek Extended
                6.4.2.3.29. 2000-206f General Punctuation
                6.4.2.3.30. 2070-209f Superscripts and Subscripts
                6.4.2.3.31. 20a0-20cf Currency Symbols
                6.4.2.3.32. 20d0-20ff Combining Marks for Symbols
                6.4.2.3.33. 2100-214f Letterlike Symbols
                6.4.2.3.34. 2150-218f Number Forms
                6.4.2.3.35. 2190-21ff Arrows
                6.4.2.3.36. 2200-22ff Mathematical Operators
                6.4.2.3.37. 2300-23ff Miscellaneous Technical
                6.4.2.3.38. 2400-243f Control Pictures
                6.4.2.3.39. 2440-245f Optical Character Recognition
                6.4.2.3.40. 2460-24ff Enclosed Alphanumerics
                6.4.2.3.41. 2500-257f Box Drawing
                6.4.2.3.42. 2580-259f Block Elements
                6.4.2.3.43. 25a0-25ff Geometric Shapes
                6.4.2.3.44. 2600-26ff Miscellaneous Symbols
                6.4.2.3.45. 2700-27bf Dingbats
                6.4.2.3.46. 3000-303f CJK Symbols and Punctuation
                6.4.2.3.47. 3040-309f Hiragana
                6.4.2.3.48. 30a0-30ff Katakana
                6.4.2.3.49. 3100-312f Bopomofo
                6.4.2.3.50. 3130-318f Hangul Compatibility Jamo
                6.4.2.3.51. 3190-319f Kanbun
                6.4.2.3.52. 3200-32ff Enclosed CJK Letters and Months
                6.4.2.3.53. 3300-33ff CJK Compatibility
                6.4.2.3.54. 4e00-9fff CJK Unified Ideographs
                   6.4.2.3.54.1. CJK Unified Ideographs 4e00-4eff
                   6.4.2.3.54.2. CJK Unified Ideographs 4f00-4fff
                   6.4.2.3.54.3. CJK Unified Ideographs 5000-50ff
                   6.4.2.3.54.4. CJK Unified Ideographs 5100-51ff
                   6.4.2.3.54.5. CJK Unified Ideographs 5200-52ff
                   6.4.2.3.54.6. CJK Unified Ideographs 5300-53ff
                   6.4.2.3.54.7. CJK Unified Ideographs 5400-54ff
                   6.4.2.3.54.8. CJK Unified Ideographs 5500-55ff
                   6.4.2.3.54.9. CJK Unified Ideographs 5600-56ff
                   6.4.2.3.54.10. CJK Unified Ideographs 5700-57ff
                   6.4.2.3.54.11. CJK Unified Ideographs 5800-58ff
                   6.4.2.3.54.12. CJK Unified Ideographs 5900-59ff
                   6.4.2.3.54.13. CJK Unified Ideographs 5a00-5aff
                   6.4.2.3.54.14. CJK Unified Ideographs 5b00-5bff
                   6.4.2.3.54.15. CJK Unified Ideographs 5c00-5cff
                   6.4.2.3.54.16. CJK Unified Ideographs 5d00-5dff
                   6.4.2.3.54.17. CJK Unified Ideographs 5e00-5eff
                   6.4.2.3.54.18. CJK Unified Ideographs 5f00-5fff
                   6.4.2.3.54.19. CJK Unified Ideographs 6000-60ff
                   6.4.2.3.54.20. CJK Unified Ideographs 6100-61ff
                   6.4.2.3.54.21. CJK Unified Ideographs 6200-62ff
                   6.4.2.3.54.22. CJK Unified Ideographs 6300-63ff
                   6.4.2.3.54.23. CJK Unified Ideographs 6400-64ff
                   6.4.2.3.54.24. CJK Unified Ideographs 6500-65ff
                   6.4.2.3.54.25. CJK Unified Ideographs 6600-66ff
                   6.4.2.3.54.26. CJK Unified Ideographs 6700-67ff
                   6.4.2.3.54.27. CJK Unified Ideographs 6800-68ff
                   6.4.2.3.54.28. CJK Unified Ideographs 6900-69ff
                   6.4.2.3.54.29. CJK Unified Ideographs 6a00-6aff
                   6.4.2.3.54.30. CJK Unified Ideographs 6b00-6bff
                   6.4.2.3.54.31. CJK Unified Ideographs 6c00-6cff
                   6.4.2.3.54.32. CJK Unified Ideographs 6d00-6dff
                   6.4.2.3.54.33. CJK Unified Ideographs 6e00-6eff
                   6.4.2.3.54.34. CJK Unified Ideographs 6f00-6fff
                   6.4.2.3.54.35. CJK Unified Ideographs 7000-70ff
                   6.4.2.3.54.36. CJK Unified Ideographs 7100-71ff
                   6.4.2.3.54.37. CJK Unified Ideographs 7200-72ff
                   6.4.2.3.54.38. CJK Unified Ideographs 7300-73ff
                   6.4.2.3.54.39. CJK Unified Ideographs 7400-74ff
                   6.4.2.3.54.40. CJK Unified Ideographs 7500-75ff
                   6.4.2.3.54.41. CJK Unified Ideographs 7600-76ff
                   6.4.2.3.54.42. CJK Unified Ideographs 7700-77ff
                   6.4.2.3.54.43. CJK Unified Ideographs 7800-78ff
                   6.4.2.3.54.44. CJK Unified Ideographs 7900-79ff
                   6.4.2.3.54.45. CJK Unified Ideographs 7a00-7aff
                   6.4.2.3.54.46. CJK Unified Ideographs 7b00-7bff
                   6.4.2.3.54.47. CJK Unified Ideographs 7c00-7cff
                   6.4.2.3.54.48. CJK Unified Ideographs 7d00-7dff
                   6.4.2.3.54.49. CJK Unified Ideographs 7e00-7eff
                   6.4.2.3.54.50. CJK Unified Ideographs 7f00-7fff
                   6.4.2.3.54.51. CJK Unified Ideographs 8000-80ff
                   6.4.2.3.54.52. CJK Unified Ideographs 8100-81ff
                   6.4.2.3.54.53. CJK Unified Ideographs 8200-82ff
                   6.4.2.3.54.54. CJK Unified Ideographs 8300-83ff
                   6.4.2.3.54.55. CJK Unified Ideographs 8400-84ff
                   6.4.2.3.54.56. CJK Unified Ideographs 8500-85ff
                   6.4.2.3.54.57. CJK Unified Ideographs 8600-86ff
                   6.4.2.3.54.58. CJK Unified Ideographs 8700-87ff
                   6.4.2.3.54.59. CJK Unified Ideographs 8800-88ff
                   6.4.2.3.54.60. CJK Unified Ideographs 8900-89ff
                   6.4.2.3.54.61. CJK Unified Ideographs 8a00-8aff
                   6.4.2.3.54.62. CJK Unified Ideographs 8b00-8bff
                   6.4.2.3.54.63. CJK Unified Ideographs 8c00-8cff
                   6.4.2.3.54.64. CJK Unified Ideographs 8d00-8dff
                   6.4.2.3.54.65. CJK Unified Ideographs 8e00-8eff
                   6.4.2.3.54.66. CJK Unified Ideographs 8f00-8fff
                   6.4.2.3.54.67. CJK Unified Ideographs 9000-90ff
                   6.4.2.3.54.68. CJK Unified Ideographs 9100-91ff
                   6.4.2.3.54.69. CJK Unified Ideographs 9200-92ff
                   6.4.2.3.54.70. CJK Unified Ideographs 9300-93ff
                   6.4.2.3.54.71. CJK Unified Ideographs 9400-94ff
                   6.4.2.3.54.72. CJK Unified Ideographs 9500-95ff
                   6.4.2.3.54.73. CJK Unified Ideographs 9600-96ff
                   6.4.2.3.54.74. CJK Unified Ideographs 9700-97ff
                   6.4.2.3.54.75. CJK Unified Ideographs 9800-98ff
                   6.4.2.3.54.76. CJK Unified Ideographs 9900-99ff
                   6.4.2.3.54.77. CJK Unified Ideographs 9a00-9aff
                   6.4.2.3.54.78. CJK Unified Ideographs 9b00-9bff
                   6.4.2.3.54.79. CJK Unified Ideographs 9c00-9cff
                   6.4.2.3.54.80. CJK Unified Ideographs 9d00-9dff
                   6.4.2.3.54.81. CJK Unified Ideographs 9e00-9eff
                   6.4.2.3.54.82. CJK Unified Ideographs 9f00-9fff
                6.4.2.3.55. ac00-d7a3 Hangul Syllables
                   6.4.2.3.55.1. Hangul Syllables ac00-acff
                   6.4.2.3.55.2. Hangul Syllables ad00-adff
                   6.4.2.3.55.3. Hangul Syllables ae00-aeff
                   6.4.2.3.55.4. Hangul Syllables af00-afff
                   6.4.2.3.55.5. Hangul Syllables b000-b0ff
                   6.4.2.3.55.6. Hangul Syllables b100-b1ff
                   6.4.2.3.55.7. Hangul Syllables b200-b2ff
                   6.4.2.3.55.8. Hangul Syllables b300-b3ff
                   6.4.2.3.55.9. Hangul Syllables b400-b4ff
                   6.4.2.3.55.10. Hangul Syllables b500-b5ff
                   6.4.2.3.55.11. Hangul Syllables b600-b6ff
                   6.4.2.3.55.12. Hangul Syllables b700-b7ff
                   6.4.2.3.55.13. Hangul Syllables b800-b8ff
                   6.4.2.3.55.14. Hangul Syllables b900-b9ff
                   6.4.2.3.55.15. Hangul Syllables ba00-baff
                   6.4.2.3.55.16. Hangul Syllables bb00-bbff
                   6.4.2.3.55.17. Hangul Syllables bc00-bcff
                   6.4.2.3.55.18. Hangul Syllables bd00-bdff
                   6.4.2.3.55.19. Hangul Syllables be00-beff
                   6.4.2.3.55.20. Hangul Syllables bf00-bfff
                   6.4.2.3.55.21. Hangul Syllables c000-c0ff
                   6.4.2.3.55.22. Hangul Syllables c100-c1ff
                   6.4.2.3.55.23. Hangul Syllables c200-c2ff
                   6.4.2.3.55.24. Hangul Syllables c300-c3ff
                   6.4.2.3.55.25. Hangul Syllables c400-c4ff
                   6.4.2.3.55.26. Hangul Syllables c500-c5ff
                   6.4.2.3.55.27. Hangul Syllables c600-c6ff
                   6.4.2.3.55.28. Hangul Syllables c700-c7ff
                   6.4.2.3.55.29. Hangul Syllables c800-c8ff
                   6.4.2.3.55.30. Hangul Syllables c900-c9ff
                   6.4.2.3.55.31. Hangul Syllables ca00-caff
                   6.4.2.3.55.32. Hangul Syllables cb00-cbff
                   6.4.2.3.55.33. Hangul Syllables cc00-ccff
                   6.4.2.3.55.34. Hangul Syllables cd00-cdff
                   6.4.2.3.55.35. Hangul Syllables ce00-ceff
                   6.4.2.3.55.36. Hangul Syllables cf00-cfff
                   6.4.2.3.55.37. Hangul Syllables d000-d0ff
                   6.4.2.3.55.38. Hangul Syllables d100-d1ff
                   6.4.2.3.55.39. Hangul Syllables d200-d2ff
                   6.4.2.3.55.40. Hangul Syllables d300-d3ff
                   6.4.2.3.55.41. Hangul Syllables d400-d4ff
                   6.4.2.3.55.42. Hangul Syllables d500-d5ff
                   6.4.2.3.55.43. Hangul Syllables d600-d6ff
                   6.4.2.3.55.44. Hangul Syllables d700-d7a3
                6.4.2.3.56. d800-db7f High Surrogates
                   6.4.2.3.56.1. High Surrogates d800-d8ff
                   6.4.2.3.56.2. High Surrogates d900-d9ff
                   6.4.2.3.56.3. High Surrogates da00-daff
                   6.4.2.3.56.4. High Surrogates db00-db7f
                6.4.2.3.57. dc00-dfff Low Surrogates
                   6.4.2.3.57.1. Low Surrogates dc00-dcff
                   6.4.2.3.57.2. Low Surrogates dd00-ddff
                   6.4.2.3.57.3. Low Surrogates de00-deff
                   6.4.2.3.57.4. Low Surrogates df00-dfff
                6.4.2.3.58. f900-faff CJK Compatibility Ideographs
                   6.4.2.3.58.1. CJK Compatibility Ideographs f900-f9ff
                   6.4.2.3.58.2. CJK Compatibility Ideographs fa00-faff
                6.4.2.3.59. fb00-fb4f Alphabetic Presentation Forms
                6.4.2.3.60. fb50-fdff Arabic Presentation Forms-A
                   6.4.2.3.60.1. Arabic Presentation Forms-A fb50-fc4f
                   6.4.2.3.60.2. Arabic Presentation Forms-A fc00-fcff
                   6.4.2.3.60.3. Arabic Presentation Forms-A fd00-fdff
                6.4.2.3.61. fe20-fe2f Combining Half Marks
                6.4.2.3.62. fe30-fe4f CJK Compatibility Forms
                6.4.2.3.63. fe50-fe6f Small Form Variants
                6.4.2.3.64. fe70-feff Arabic Presentation Forms-B
                6.4.2.3.65. ff00-ffef Halfwidth and Fullwidth Forms
                6.4.2.3.66. fff0-ffff Specials
       6.5. ISO-10646 encodings
          6.5.1. Utf-8 Encode/Decode
             6.5.1.1. Test 14: utf8 round trip
          6.5.2. UCS-2
          6.5.3. UCS-2le
          6.5.4. UCS-4
          6.5.5. UCS-4LE
          6.5.6. UTF-16
          6.5.7. UTF-16le
       6.6. Iso 8859-x Mappings
          6.6.1. Conversion functions
          6.6.2. Tables
             6.6.2.1. Iso8859-1
             6.6.2.2. Iso8859-2
             6.6.2.3. Iso8859-3
             6.6.2.4. Iso8859-4
             6.6.2.5. Iso8859-5
             6.6.2.6. Iso8859-6
             6.6.2.7. Iso8859-7
             6.6.2.8. Iso8859-8
             6.6.2.9. Iso8859-9
             6.6.2.10. Iso8859-14
             6.6.2.11. Iso8859-15
       6.7. ShiftJis Mapping
          6.7.1. Conversion functions
          6.7.2. Tables
             6.7.2.1. ASCII subrange
             6.7.2.2. Kana subrange
             6.7.2.3. Kanji lead byte 0x81.
             6.7.2.4. Kanji lead byte 0x82.
             6.7.2.5. Kanji lead byte 0x83.
             6.7.2.6. Kanji lead byte 0x84.
             6.7.2.7. Kanji lead byte 0x85.
             6.7.2.8. Kanji lead byte 0x86.
             6.7.2.9. Kanji lead byte 0x87.
             6.7.2.10. Kanji lead byte 0x88.
             6.7.2.11. Kanji lead byte 0x89.
             6.7.2.12. Kanji lead byte 0x8a.
             6.7.2.13. Kanji lead byte 0x8b.
             6.7.2.14. Kanji lead byte 0x8c.
             6.7.2.15. Kanji lead byte 0x8d.
             6.7.2.16. Kanji lead byte 0x8e.
             6.7.2.17. Kanji lead byte 0x8f.
             6.7.2.18. Kanji lead byte 0x90.
             6.7.2.19. Kanji lead byte 0x91.
             6.7.2.20. Kanji lead byte 0x92.
             6.7.2.21. Kanji lead byte 0x93.
             6.7.2.22. Kanji lead byte 0x94.
             6.7.2.23. Kanji lead byte 0x95.
             6.7.2.24. Kanji lead byte 0x96.
             6.7.2.25. Kanji lead byte 0x97.
             6.7.2.26. Kanji lead byte 0x98.
             6.7.2.27. Kanji lead byte 0x99.
             6.7.2.28. Kanji lead byte 0x9a.
             6.7.2.29. Kanji lead byte 0x9b.
             6.7.2.30. Kanji lead byte 0x9c.
             6.7.2.31. Kanji lead byte 0x9d.
             6.7.2.32. Kanji lead byte 0x9e.
             6.7.2.33. Kanji lead byte 0x9f.
             6.7.2.34. Kanji lead byte 0xe0.
             6.7.2.35. Kanji lead byte 0xe1.
             6.7.2.36. Kanji lead byte 0xe2.
             6.7.2.37. Kanji lead byte 0xe3.
             6.7.2.38. Kanji lead byte 0xe4.
             6.7.2.39. Kanji lead byte 0xe5.
             6.7.2.40. Kanji lead byte 0xe6.
             6.7.2.41. Kanji lead byte 0xe7.
             6.7.2.42. Kanji lead byte 0xe8.
             6.7.2.43. Kanji lead byte 0xe9.
             6.7.2.44. Kanji lead byte 0xea.
             6.7.2.45. Kanji lead byte 0xeb.
             6.7.2.46. Kanji lead byte 0xec.
             6.7.2.47. Kanji lead byte 0xed.
             6.7.2.48. Kanji lead byte 0xee.
             6.7.2.49. Kanji lead byte 0xef.
             6.7.2.50. Kanji lead byte 0xf0.
             6.7.2.51. Kanji lead byte 0xf1.
             6.7.2.52. Kanji lead byte 0xf2.
             6.7.2.53. Kanji lead byte 0xf3.
             6.7.2.54. Kanji lead byte 0xf4.
             6.7.2.55. Kanji lead byte 0xf5.
             6.7.2.56. Kanji lead byte 0xf6.
             6.7.2.57. Kanji lead byte 0xf7.
             6.7.2.58. Kanji lead byte 0xf8.
             6.7.2.59. Kanji lead byte 0xf9.
             6.7.2.60. Kanji lead byte 0xfa.
             6.7.2.61. Kanji lead byte 0xfb.
             6.7.2.62. Kanji lead byte 0xfc.
       6.8. GB 2312 Mapping
          6.8.1. Conversion functions
          6.8.2. Tables
             6.8.2.1. GB2312 lead byte 0xa1.
             6.8.2.2. GB2312 lead byte 0xa2.
             6.8.2.3. GB2312 lead byte 0xa3.
             6.8.2.4. GB2312 lead byte 0xa4.
             6.8.2.5. GB2312 lead byte 0xa5.
             6.8.2.6. GB2312 lead byte 0xa6.
             6.8.2.7. GB2312 lead byte 0xa7.
             6.8.2.8. GB2312 lead byte 0xa8.
             6.8.2.9. GB2312 lead byte 0xa9.
             6.8.2.10. GB2312 lead byte 0xaa.
             6.8.2.11. GB2312 lead byte 0xab.
             6.8.2.12. GB2312 lead byte 0xac.
             6.8.2.13. GB2312 lead byte 0xad.
             6.8.2.14. GB2312 lead byte 0xae.
             6.8.2.15. GB2312 lead byte 0xaf.
             6.8.2.16. GB2312 lead byte 0xb0.
             6.8.2.17. GB2312 lead byte 0xb1.
             6.8.2.18. GB2312 lead byte 0xb2.
             6.8.2.19. GB2312 lead byte 0xb3.
             6.8.2.20. GB2312 lead byte 0xb4.
             6.8.2.21. GB2312 lead byte 0xb5.
             6.8.2.22. GB2312 lead byte 0xb6.
             6.8.2.23. GB2312 lead byte 0xb7.
             6.8.2.24. GB2312 lead byte 0xb8.
             6.8.2.25. GB2312 lead byte 0xb9.
             6.8.2.26. GB2312 lead byte 0xba.
             6.8.2.27. GB2312 lead byte 0xbb.
             6.8.2.28. GB2312 lead byte 0xbc.
             6.8.2.29. GB2312 lead byte 0xbd.
             6.8.2.30. GB2312 lead byte 0xbe.
             6.8.2.31. GB2312 lead byte 0xbf.
             6.8.2.32. GB2312 lead byte 0xc0.
             6.8.2.33. GB2312 lead byte 0xc1.
             6.8.2.34. GB2312 lead byte 0xc2.
             6.8.2.35. GB2312 lead byte 0xc3.
             6.8.2.36. GB2312 lead byte 0xc4.
             6.8.2.37. GB2312 lead byte 0xc5.
             6.8.2.38. GB2312 lead byte 0xc6.
             6.8.2.39. GB2312 lead byte 0xc7.
             6.8.2.40. GB2312 lead byte 0xc8.
             6.8.2.41. GB2312 lead byte 0xc9.
             6.8.2.42. GB2312 lead byte 0xca.
             6.8.2.43. GB2312 lead byte 0xcb.
             6.8.2.44. GB2312 lead byte 0xcc.
             6.8.2.45. GB2312 lead byte 0xcd.
             6.8.2.46. GB2312 lead byte 0xce.
             6.8.2.47. GB2312 lead byte 0xcf.
             6.8.2.48. GB2312 lead byte 0xd0.
             6.8.2.49. GB2312 lead byte 0xd1.
             6.8.2.50. GB2312 lead byte 0xd2.
             6.8.2.51. GB2312 lead byte 0xd3.
             6.8.2.52. GB2312 lead byte 0xd4.
             6.8.2.53. GB2312 lead byte 0xd5.
             6.8.2.54. GB2312 lead byte 0xd6.
             6.8.2.55. GB2312 lead byte 0xd7.
             6.8.2.56. GB2312 lead byte 0xd8.
             6.8.2.57. GB2312 lead byte 0xd9.
             6.8.2.58. GB2312 lead byte 0xda.
             6.8.2.59. GB2312 lead byte 0xdb.
             6.8.2.60. GB2312 lead byte 0xdc.
             6.8.2.61. GB2312 lead byte 0xdd.
             6.8.2.62. GB2312 lead byte 0xde.
             6.8.2.63. GB2312 lead byte 0xdf.
             6.8.2.64. GB2312 lead byte 0xe0.
             6.8.2.65. GB2312 lead byte 0xe1.
             6.8.2.66. GB2312 lead byte 0xe2.
             6.8.2.67. GB2312 lead byte 0xe3.
             6.8.2.68. GB2312 lead byte 0xe4.
             6.8.2.69. GB2312 lead byte 0xe5.
             6.8.2.70. GB2312 lead byte 0xe6.
             6.8.2.71. GB2312 lead byte 0xe7.
             6.8.2.72. GB2312 lead byte 0xe8.
             6.8.2.73. GB2312 lead byte 0xe9.
             6.8.2.74. GB2312 lead byte 0xea.
             6.8.2.75. GB2312 lead byte 0xeb.
             6.8.2.76. GB2312 lead byte 0xec.
             6.8.2.77. GB2312 lead byte 0xed.
             6.8.2.78. GB2312 lead byte 0xee.
             6.8.2.79. GB2312 lead byte 0xef.
             6.8.2.80. GB2312 lead byte 0xf0.
             6.8.2.81. GB2312 lead byte 0xf1.
             6.8.2.82. GB2312 lead byte 0xf2.
             6.8.2.83. GB2312 lead byte 0xf3.
             6.8.2.84. GB2312 lead byte 0xf4.
             6.8.2.85. GB2312 lead byte 0xf5.
             6.8.2.86. GB2312 lead byte 0xf6.
             6.8.2.87. GB2312 lead byte 0xf7.
             6.8.2.88. GB2312 lead byte 0xf8.
             6.8.2.89. GB2312 lead byte 0xf9.
             6.8.2.90. GB2312 lead byte 0xfa.
             6.8.2.91. GB2312 lead byte 0xfb.
             6.8.2.92. GB2312 lead byte 0xfc.
             6.8.2.93. GB2312 lead byte 0xfd.
             6.8.2.94. GB2312 lead byte 0xfe.
       6.9. KSC-5601-1992 (Johab) Mapping
          6.9.1. Conversion functions
          6.9.2. Tables
             6.9.2.1. KSC5601-1992 (Johab) lead byte 0x81.
             6.9.2.2. KSC5601-1992 (Johab) lead byte 0x82.
             6.9.2.3. KSC5601-1992 (Johab) lead byte 0x83.
             6.9.2.4. KSC5601-1992 (Johab) lead byte 0x84.
             6.9.2.5. KSC5601-1992 (Johab) lead byte 0x85.
             6.9.2.6. KSC5601-1992 (Johab) lead byte 0x86.
             6.9.2.7. KSC5601-1992 (Johab) lead byte 0x87.
             6.9.2.8. KSC5601-1992 (Johab) lead byte 0x88.
             6.9.2.9. KSC5601-1992 (Johab) lead byte 0x89.
             6.9.2.10. KSC5601-1992 (Johab) lead byte 0x8a.
             6.9.2.11. KSC5601-1992 (Johab) lead byte 0x8b.
             6.9.2.12. KSC5601-1992 (Johab) lead byte 0x8c.
             6.9.2.13. KSC5601-1992 (Johab) lead byte 0x8d.
             6.9.2.14. KSC5601-1992 (Johab) lead byte 0x8e.
             6.9.2.15. KSC5601-1992 (Johab) lead byte 0x8f.
             6.9.2.16. KSC5601-1992 (Johab) lead byte 0x90.
             6.9.2.17. KSC5601-1992 (Johab) lead byte 0x91.
             6.9.2.18. KSC5601-1992 (Johab) lead byte 0x92.
             6.9.2.19. KSC5601-1992 (Johab) lead byte 0x93.
             6.9.2.20. KSC5601-1992 (Johab) lead byte 0x94.
             6.9.2.21. KSC5601-1992 (Johab) lead byte 0x95.
             6.9.2.22. KSC5601-1992 (Johab) lead byte 0x96.
             6.9.2.23. KSC5601-1992 (Johab) lead byte 0x97.
             6.9.2.24. KSC5601-1992 (Johab) lead byte 0x98.
             6.9.2.25. KSC5601-1992 (Johab) lead byte 0x99.
             6.9.2.26. KSC5601-1992 (Johab) lead byte 0x9a.
             6.9.2.27. KSC5601-1992 (Johab) lead byte 0x9b.
             6.9.2.28. KSC5601-1992 (Johab) lead byte 0x9c.
             6.9.2.29. KSC5601-1992 (Johab) lead byte 0x9d.
             6.9.2.30. KSC5601-1992 (Johab) lead byte 0x9e.
             6.9.2.31. KSC5601-1992 (Johab) lead byte 0x9f.
             6.9.2.32. KSC5601-1992 (Johab) lead byte 0xa0.
             6.9.2.33. KSC5601-1992 (Johab) lead byte 0xa1.
             6.9.2.34. KSC5601-1992 (Johab) lead byte 0xa2.
             6.9.2.35. KSC5601-1992 (Johab) lead byte 0xa3.
             6.9.2.36. KSC5601-1992 (Johab) lead byte 0xa4.
             6.9.2.37. KSC5601-1992 (Johab) lead byte 0xa5.
             6.9.2.38. KSC5601-1992 (Johab) lead byte 0xa6.
             6.9.2.39. KSC5601-1992 (Johab) lead byte 0xa7.
             6.9.2.40. KSC5601-1992 (Johab) lead byte 0xa8.
             6.9.2.41. KSC5601-1992 (Johab) lead byte 0xa9.
             6.9.2.42. KSC5601-1992 (Johab) lead byte 0xaa.
             6.9.2.43. KSC5601-1992 (Johab) lead byte 0xab.
             6.9.2.44. KSC5601-1992 (Johab) lead byte 0xac.
             6.9.2.45. KSC5601-1992 (Johab) lead byte 0xad.
             6.9.2.46. KSC5601-1992 (Johab) lead byte 0xae.
             6.9.2.47. KSC5601-1992 (Johab) lead byte 0xaf.
             6.9.2.48. KSC5601-1992 (Johab) lead byte 0xb0.
             6.9.2.49. KSC5601-1992 (Johab) lead byte 0xb1.
             6.9.2.50. KSC5601-1992 (Johab) lead byte 0xb2.
             6.9.2.51. KSC5601-1992 (Johab) lead byte 0xb3.
             6.9.2.52. KSC5601-1992 (Johab) lead byte 0xb4.
             6.9.2.53. KSC5601-1992 (Johab) lead byte 0xb5.
             6.9.2.54. KSC5601-1992 (Johab) lead byte 0xb6.
             6.9.2.55. KSC5601-1992 (Johab) lead byte 0xb7.
             6.9.2.56. KSC5601-1992 (Johab) lead byte 0xb8.
             6.9.2.57. KSC5601-1992 (Johab) lead byte 0xb9.
             6.9.2.58. KSC5601-1992 (Johab) lead byte 0xba.
             6.9.2.59. KSC5601-1992 (Johab) lead byte 0xbb.
             6.9.2.60. KSC5601-1992 (Johab) lead byte 0xbc.
             6.9.2.61. KSC5601-1992 (Johab) lead byte 0xbd.
             6.9.2.62. KSC5601-1992 (Johab) lead byte 0xbe.
             6.9.2.63. KSC5601-1992 (Johab) lead byte 0xbf.
             6.9.2.64. KSC5601-1992 (Johab) lead byte 0xc0.
             6.9.2.65. KSC5601-1992 (Johab) lead byte 0xc1.
             6.9.2.66. KSC5601-1992 (Johab) lead byte 0xc2.
             6.9.2.67. KSC5601-1992 (Johab) lead byte 0xc3.
             6.9.2.68. KSC5601-1992 (Johab) lead byte 0xc4.
             6.9.2.69. KSC5601-1992 (Johab) lead byte 0xc5.
             6.9.2.70. KSC5601-1992 (Johab) lead byte 0xc6.
             6.9.2.71. KSC5601-1992 (Johab) lead byte 0xc7.
             6.9.2.72. KSC5601-1992 (Johab) lead byte 0xc8.
             6.9.2.73. KSC5601-1992 (Johab) lead byte 0xc9.
             6.9.2.74. KSC5601-1992 (Johab) lead byte 0xca.
             6.9.2.75. KSC5601-1992 (Johab) lead byte 0xcb.
             6.9.2.76. KSC5601-1992 (Johab) lead byte 0xcc.
             6.9.2.77. KSC5601-1992 (Johab) lead byte 0xcd.
             6.9.2.78. KSC5601-1992 (Johab) lead byte 0xce.
             6.9.2.79. KSC5601-1992 (Johab) lead byte 0xcf.
             6.9.2.80. KSC5601-1992 (Johab) lead byte 0xd0.
             6.9.2.81. KSC5601-1992 (Johab) lead byte 0xd1.
             6.9.2.82. KSC5601-1992 (Johab) lead byte 0xd2.
             6.9.2.83. KSC5601-1992 (Johab) lead byte 0xd3.
             6.9.2.84. KSC5601-1992 (Johab) lead byte 0xd4.
             6.9.2.85. KSC5601-1992 (Johab) lead byte 0xd5.
             6.9.2.86. KSC5601-1992 (Johab) lead byte 0xd6.
             6.9.2.87. KSC5601-1992 (Johab) lead byte 0xd7.
             6.9.2.88. KSC5601-1992 (Johab) lead byte 0xd8.
             6.9.2.89. KSC5601-1992 (Johab) lead byte 0xd9.
             6.9.2.90. KSC5601-1992 (Johab) lead byte 0xda.
             6.9.2.91. KSC5601-1992 (Johab) lead byte 0xdb.
             6.9.2.92. KSC5601-1992 (Johab) lead byte 0xdc.
             6.9.2.93. KSC5601-1992 (Johab) lead byte 0xdd.
             6.9.2.94. KSC5601-1992 (Johab) lead byte 0xde.
             6.9.2.95. KSC5601-1992 (Johab) lead byte 0xdf.
             6.9.2.96. KSC5601-1992 (Johab) lead byte 0xe0.
             6.9.2.97. KSC5601-1992 (Johab) lead byte 0xe1.
             6.9.2.98. KSC5601-1992 (Johab) lead byte 0xe2.
             6.9.2.99. KSC5601-1992 (Johab) lead byte 0xe3.
             6.9.2.100. KSC5601-1992 (Johab) lead byte 0xe4.
             6.9.2.101. KSC5601-1992 (Johab) lead byte 0xe5.
             6.9.2.102. KSC5601-1992 (Johab) lead byte 0xe6.
             6.9.2.103. KSC5601-1992 (Johab) lead byte 0xe7.
             6.9.2.104. KSC5601-1992 (Johab) lead byte 0xe8.
             6.9.2.105. KSC5601-1992 (Johab) lead byte 0xe9.
             6.9.2.106. KSC5601-1992 (Johab) lead byte 0xea.
             6.9.2.107. KSC5601-1992 (Johab) lead byte 0xeb.
             6.9.2.108. KSC5601-1992 (Johab) lead byte 0xec.
             6.9.2.109. KSC5601-1992 (Johab) lead byte 0xed.
             6.9.2.110. KSC5601-1992 (Johab) lead byte 0xee.
             6.9.2.111. KSC5601-1992 (Johab) lead byte 0xef.
             6.9.2.112. KSC5601-1992 (Johab) lead byte 0xf0.
             6.9.2.113. KSC5601-1992 (Johab) lead byte 0xf1.
             6.9.2.114. KSC5601-1992 (Johab) lead byte 0xf2.
             6.9.2.115. KSC5601-1992 (Johab) lead byte 0xf3.
             6.9.2.116. KSC5601-1992 (Johab) lead byte 0xf4.
             6.9.2.117. KSC5601-1992 (Johab) lead byte 0xf5.
             6.9.2.118. KSC5601-1992 (Johab) lead byte 0xf6.
             6.9.2.119. KSC5601-1992 (Johab) lead byte 0xf7.
             6.9.2.120. KSC5601-1992 (Johab) lead byte 0xf8.
             6.9.2.121. KSC5601-1992 (Johab) lead byte 0xf9.
             6.9.2.122. KSC5601-1992 (Johab) lead byte 0xfa.
             6.9.2.123. KSC5601-1992 (Johab) lead byte 0xfb.
             6.9.2.124. KSC5601-1992 (Johab) lead byte 0xfc.
             6.9.2.125. KSC5601-1992 (Johab) lead byte 0xfd.
       6.10. KSC-5601-1987 (Wansung) Mapping
          6.10.1. Conversion functions
          6.10.2. Tables
             6.10.2.1. KSC5601-1987 (Wansung) lead byte 0x21.
             6.10.2.2. KSC5601-1987 (Wansung) lead byte 0x22.
             6.10.2.3. KSC5601-1987 (Wansung) lead byte 0x23.
             6.10.2.4. KSC5601-1987 (Wansung) lead byte 0x24.
             6.10.2.5. KSC5601-1987 (Wansung) lead byte 0x25.
             6.10.2.6. KSC5601-1987 (Wansung) lead byte 0x26.
             6.10.2.7. KSC5601-1987 (Wansung) lead byte 0x27.
             6.10.2.8. KSC5601-1987 (Wansung) lead byte 0x28.
             6.10.2.9. KSC5601-1987 (Wansung) lead byte 0x29.
             6.10.2.10. KSC5601-1987 (Wansung) lead byte 0x2a.
             6.10.2.11. KSC5601-1987 (Wansung) lead byte 0x2b.
             6.10.2.12. KSC5601-1987 (Wansung) lead byte 0x2c.
             6.10.2.13. KSC5601-1987 (Wansung) lead byte 0x2d.
             6.10.2.14. KSC5601-1987 (Wansung) lead byte 0x2e.
             6.10.2.15. KSC5601-1987 (Wansung) lead byte 0x2f.
             6.10.2.16. KSC5601-1987 (Wansung) lead byte 0x30.
             6.10.2.17. KSC5601-1987 (Wansung) lead byte 0x31.
             6.10.2.18. KSC5601-1987 (Wansung) lead byte 0x32.
             6.10.2.19. KSC5601-1987 (Wansung) lead byte 0x33.
             6.10.2.20. KSC5601-1987 (Wansung) lead byte 0x34.
             6.10.2.21. KSC5601-1987 (Wansung) lead byte 0x35.
             6.10.2.22. KSC5601-1987 (Wansung) lead byte 0x36.
             6.10.2.23. KSC5601-1987 (Wansung) lead byte 0x37.
             6.10.2.24. KSC5601-1987 (Wansung) lead byte 0x38.
             6.10.2.25. KSC5601-1987 (Wansung) lead byte 0x39.
             6.10.2.26. KSC5601-1987 (Wansung) lead byte 0x3a.
             6.10.2.27. KSC5601-1987 (Wansung) lead byte 0x3b.
             6.10.2.28. KSC5601-1987 (Wansung) lead byte 0x3c.
             6.10.2.29. KSC5601-1987 (Wansung) lead byte 0x3d.
             6.10.2.30. KSC5601-1987 (Wansung) lead byte 0x3e.
             6.10.2.31. KSC5601-1987 (Wansung) lead byte 0x3f.
             6.10.2.32. KSC5601-1987 (Wansung) lead byte 0x40.
             6.10.2.33. KSC5601-1987 (Wansung) lead byte 0x41.
             6.10.2.34. KSC5601-1987 (Wansung) lead byte 0x42.
             6.10.2.35. KSC5601-1987 (Wansung) lead byte 0x43.
             6.10.2.36. KSC5601-1987 (Wansung) lead byte 0x44.
             6.10.2.37. KSC5601-1987 (Wansung) lead byte 0x45.
             6.10.2.38. KSC5601-1987 (Wansung) lead byte 0x46.
             6.10.2.39. KSC5601-1987 (Wansung) lead byte 0x47.
             6.10.2.40. KSC5601-1987 (Wansung) lead byte 0x48.
             6.10.2.41. KSC5601-1987 (Wansung) lead byte 0x49.
             6.10.2.42. KSC5601-1987 (Wansung) lead byte 0x4a.
             6.10.2.43. KSC5601-1987 (Wansung) lead byte 0x4b.
             6.10.2.44. KSC5601-1987 (Wansung) lead byte 0x4c.
             6.10.2.45. KSC5601-1987 (Wansung) lead byte 0x4d.
             6.10.2.46. KSC5601-1987 (Wansung) lead byte 0x4e.
             6.10.2.47. KSC5601-1987 (Wansung) lead byte 0x4f.
             6.10.2.48. KSC5601-1987 (Wansung) lead byte 0x50.
             6.10.2.49. KSC5601-1987 (Wansung) lead byte 0x51.
             6.10.2.50. KSC5601-1987 (Wansung) lead byte 0x52.
             6.10.2.51. KSC5601-1987 (Wansung) lead byte 0x53.
             6.10.2.52. KSC5601-1987 (Wansung) lead byte 0x54.
             6.10.2.53. KSC5601-1987 (Wansung) lead byte 0x55.
             6.10.2.54. KSC5601-1987 (Wansung) lead byte 0x56.
             6.10.2.55. KSC5601-1987 (Wansung) lead byte 0x57.
             6.10.2.56. KSC5601-1987 (Wansung) lead byte 0x58.
             6.10.2.57. KSC5601-1987 (Wansung) lead byte 0x59.
             6.10.2.58. KSC5601-1987 (Wansung) lead byte 0x5a.
             6.10.2.59. KSC5601-1987 (Wansung) lead byte 0x5b.
             6.10.2.60. KSC5601-1987 (Wansung) lead byte 0x5c.
             6.10.2.61. KSC5601-1987 (Wansung) lead byte 0x5d.
             6.10.2.62. KSC5601-1987 (Wansung) lead byte 0x5e.
             6.10.2.63. KSC5601-1987 (Wansung) lead byte 0x5f.
             6.10.2.64. KSC5601-1987 (Wansung) lead byte 0x60.
             6.10.2.65. KSC5601-1987 (Wansung) lead byte 0x61.
             6.10.2.66. KSC5601-1987 (Wansung) lead byte 0x62.
             6.10.2.67. KSC5601-1987 (Wansung) lead byte 0x63.
             6.10.2.68. KSC5601-1987 (Wansung) lead byte 0x64.
             6.10.2.69. KSC5601-1987 (Wansung) lead byte 0x65.
             6.10.2.70. KSC5601-1987 (Wansung) lead byte 0x66.
             6.10.2.71. KSC5601-1987 (Wansung) lead byte 0x67.
             6.10.2.72. KSC5601-1987 (Wansung) lead byte 0x68.
             6.10.2.73. KSC5601-1987 (Wansung) lead byte 0x69.
             6.10.2.74. KSC5601-1987 (Wansung) lead byte 0x6a.
             6.10.2.75. KSC5601-1987 (Wansung) lead byte 0x6b.
             6.10.2.76. KSC5601-1987 (Wansung) lead byte 0x6c.
             6.10.2.77. KSC5601-1987 (Wansung) lead byte 0x6d.
             6.10.2.78. KSC5601-1987 (Wansung) lead byte 0x6e.
             6.10.2.79. KSC5601-1987 (Wansung) lead byte 0x6f.
             6.10.2.80. KSC5601-1987 (Wansung) lead byte 0x70.
             6.10.2.81. KSC5601-1987 (Wansung) lead byte 0x71.
             6.10.2.82. KSC5601-1987 (Wansung) lead byte 0x72.
             6.10.2.83. KSC5601-1987 (Wansung) lead byte 0x73.
             6.10.2.84. KSC5601-1987 (Wansung) lead byte 0x74.
             6.10.2.85. KSC5601-1987 (Wansung) lead byte 0x75.
             6.10.2.86. KSC5601-1987 (Wansung) lead byte 0x76.
             6.10.2.87. KSC5601-1987 (Wansung) lead byte 0x77.
             6.10.2.88. KSC5601-1987 (Wansung) lead byte 0x78.
             6.10.2.89. KSC5601-1987 (Wansung) lead byte 0x79.
             6.10.2.90. KSC5601-1987 (Wansung) lead byte 0x7a.
             6.10.2.91. KSC5601-1987 (Wansung) lead byte 0x7b.
             6.10.2.92. KSC5601-1987 (Wansung) lead byte 0x7c.
             6.10.2.93. KSC5601-1987 (Wansung) lead byte 0x7d.
       6.11. Big5 Mapping
          6.11.1. Conversion functions
          6.11.2. Tables
             6.11.2.1. Big5 lead byte 0xa1.
             6.11.2.2. Big5 lead byte 0xa2.
             6.11.2.3. Big5 lead byte 0xa3.
             6.11.2.4. Big5 lead byte 0xa4.
             6.11.2.5. Big5 lead byte 0xa5.
             6.11.2.6. Big5 lead byte 0xa6.
             6.11.2.7. Big5 lead byte 0xa7.
             6.11.2.8. Big5 lead byte 0xa8.
             6.11.2.9. Big5 lead byte 0xa9.
             6.11.2.10. Big5 lead byte 0xaa.
             6.11.2.11. Big5 lead byte 0xab.
             6.11.2.12. Big5 lead byte 0xac.
             6.11.2.13. Big5 lead byte 0xad.
             6.11.2.14. Big5 lead byte 0xae.
             6.11.2.15. Big5 lead byte 0xaf.
             6.11.2.16. Big5 lead byte 0xb0.
             6.11.2.17. Big5 lead byte 0xb1.
             6.11.2.18. Big5 lead byte 0xb2.
             6.11.2.19. Big5 lead byte 0xb3.
             6.11.2.20. Big5 lead byte 0xb4.
             6.11.2.21. Big5 lead byte 0xb5.
             6.11.2.22. Big5 lead byte 0xb6.
             6.11.2.23. Big5 lead byte 0xb7.
             6.11.2.24. Big5 lead byte 0xb8.
             6.11.2.25. Big5 lead byte 0xb9.
             6.11.2.26. Big5 lead byte 0xba.
             6.11.2.27. Big5 lead byte 0xbb.
             6.11.2.28. Big5 lead byte 0xbc.
             6.11.2.29. Big5 lead byte 0xbd.
             6.11.2.30. Big5 lead byte 0xbe.
             6.11.2.31. Big5 lead byte 0xbf.
             6.11.2.32. Big5 lead byte 0xc0.
             6.11.2.33. Big5 lead byte 0xc1.
             6.11.2.34. Big5 lead byte 0xc2.
             6.11.2.35. Big5 lead byte 0xc3.
             6.11.2.36. Big5 lead byte 0xc4.
             6.11.2.37. Big5 lead byte 0xc5.
             6.11.2.38. Big5 lead byte 0xc6.
             6.11.2.39. Big5 lead byte 0xc7.
             6.11.2.40. Big5 lead byte 0xc8.
             6.11.2.41. Big5 lead byte 0xc9.
             6.11.2.42. Big5 lead byte 0xca.
             6.11.2.43. Big5 lead byte 0xcb.
             6.11.2.44. Big5 lead byte 0xcc.
             6.11.2.45. Big5 lead byte 0xcd.
             6.11.2.46. Big5 lead byte 0xce.
             6.11.2.47. Big5 lead byte 0xcf.
             6.11.2.48. Big5 lead byte 0xd0.
             6.11.2.49. Big5 lead byte 0xd1.
             6.11.2.50. Big5 lead byte 0xd2.
             6.11.2.51. Big5 lead byte 0xd3.
             6.11.2.52. Big5 lead byte 0xd4.
             6.11.2.53. Big5 lead byte 0xd5.
             6.11.2.54. Big5 lead byte 0xd6.
             6.11.2.55. Big5 lead byte 0xd7.
             6.11.2.56. Big5 lead byte 0xd8.
             6.11.2.57. Big5 lead byte 0xd9.
             6.11.2.58. Big5 lead byte 0xda.
             6.11.2.59. Big5 lead byte 0xdb.
             6.11.2.60. Big5 lead byte 0xdc.
             6.11.2.61. Big5 lead byte 0xdd.
             6.11.2.62. Big5 lead byte 0xde.
             6.11.2.63. Big5 lead byte 0xdf.
             6.11.2.64. Big5 lead byte 0xe0.
             6.11.2.65. Big5 lead byte 0xe1.
             6.11.2.66. Big5 lead byte 0xe2.
             6.11.2.67. Big5 lead byte 0xe3.
             6.11.2.68. Big5 lead byte 0xe4.
             6.11.2.69. Big5 lead byte 0xe5.
             6.11.2.70. Big5 lead byte 0xe6.
             6.11.2.71. Big5 lead byte 0xe7.
             6.11.2.72. Big5 lead byte 0xe8.
             6.11.2.73. Big5 lead byte 0xe9.
             6.11.2.74. Big5 lead byte 0xea.
             6.11.2.75. Big5 lead byte 0xeb.
             6.11.2.76. Big5 lead byte 0xec.
             6.11.2.77. Big5 lead byte 0xed.
             6.11.2.78. Big5 lead byte 0xee.
             6.11.2.79. Big5 lead byte 0xef.
             6.11.2.80. Big5 lead byte 0xf0.
             6.11.2.81. Big5 lead byte 0xf1.
             6.11.2.82. Big5 lead byte 0xf2.
             6.11.2.83. Big5 lead byte 0xf3.
             6.11.2.84. Big5 lead byte 0xf4.
             6.11.2.85. Big5 lead byte 0xf5.
             6.11.2.86. Big5 lead byte 0xf6.
             6.11.2.87. Big5 lead byte 0xf7.
             6.11.2.88. Big5 lead byte 0xf8.
             6.11.2.89. Big5 lead byte 0xf9.
       6.12. 8 bit Microsoft/IBM code pages
          6.12.1. Conversion functions
             6.12.1.1. Individual encodings
          6.12.2. Tables
             6.12.2.1. Ebcdic_Cp037
             6.12.2.2. Ebcdic_Cp1026
             6.12.2.3. Ebcdic_Cp500
             6.12.2.4. Ebcdic_Cp875
             6.12.2.5. Mac_Cyrillic
             6.12.2.6. Mac_Greek
             6.12.2.7. Mac_Iceland
             6.12.2.8. Mac_Latin2
             6.12.2.9. Mac_Roman
             6.12.2.10. Mac_Turkish
             6.12.2.11. PC_Cp437
             6.12.2.12. PC_Cp737
             6.12.2.13. PC_Cp775
             6.12.2.14. PC_Cp850
             6.12.2.15. PC_Cp852
             6.12.2.16. PC_Cp855
             6.12.2.17. PC_Cp857
             6.12.2.18. PC_Cp860
             6.12.2.19. PC_Cp861
             6.12.2.20. PC_Cp862
             6.12.2.21. PC_Cp863
             6.12.2.22. PC_Cp864
             6.12.2.23. PC_Cp865
             6.12.2.24. PC_Cp866
             6.12.2.25. PC_Cp869
             6.12.2.26. PC_Cp874
             6.12.2.27. Windows_Cp1250
             6.12.2.28. Windows_Cp1251
             6.12.2.29. Windows_Cp1252
             6.12.2.30. Windows_Cp1253
             6.12.2.31. Windows_Cp1254
             6.12.2.32. Windows_Cp1255
             6.12.2.33. Windows_Cp1256
             6.12.2.34. Windows_Cp1257
             6.12.2.35. Windows_Cp1258
             6.12.2.36. Windows_Cp874
       6.13. Drivers Subpackage
          6.13.1. Source Drivers Subpackage
             6.13.1.1. Source Drivers Module
             6.13.1.2. Source Base
                6.13.1.2.1. End Exceptions
                6.13.1.2.2. Source Base Class
             6.13.1.3. Disk File Input
             6.13.1.4. URL input
             6.13.1.5. FTP input
             6.13.1.6. HTTP input
             6.13.1.7. Standard Input
             6.13.1.8. Cache
          6.13.2. Sink Drivers
             6.13.2.1. Sink Base Class
             6.13.2.2. Null Sink
             6.13.2.3. Tee Sink
             6.13.2.4. Simple Disk File Sink
             6.13.2.5. Complex Disk File Sink
             6.13.2.6. Standard Output Sink
             6.13.2.7. Persistent Storage Sink
          6.13.3. Storage Drivers
             6.13.3.1. Memory Driver
             6.13.3.2. Disk Driver
       6.14. Weavers
          6.14.1. Weaver Base
          6.14.2. Raw weaver
          6.14.3. Multiplex Weaver
          6.14.4. Plain text weaver
             6.14.4.1. reference processor
             6.14.4.2. Table of Contents
             6.14.4.3. Code File List
             6.14.4.4. Code File Status
             6.14.4.5. Input File List
             6.14.4.6. Include List
             6.14.4.7. Tables
             6.14.4.8. Code Output
             6.14.4.9. Citations
             6.14.4.10. Citations
          6.14.5. HTML Weaver
             6.14.5.1. Initialisation
             6.14.5.2. Termination
             6.14.5.3. Body Output and Mode Control
             6.14.5.4. Reference Processor
             6.14.5.5. Headings
             6.14.5.6. Lists
                6.14.5.6.1. Numbered Lists
                6.14.5.6.2. Bullet Lists
                6.14.5.6.3. Keyed Lists
             6.14.5.7. Code Output
             6.14.5.8. Citations
             6.14.5.9. Paragraphs
             6.14.5.10. Fonts
             6.14.5.11. Identifier Cross Reference Table
             6.14.5.12. Class Reference Table
             6.14.5.13. Table of Contents
             6.14.5.14. Code File List
             6.14.5.15. Code File Status
             6.14.5.16. Input File List
             6.14.5.17. Include List
             6.14.5.18. Tables
             6.14.5.19. HTML Header
             6.14.5.20. Interscript Style Sheet
          6.14.6. Web Weaver
             6.14.6.1. Bugs
             6.14.6.2. Code
                6.14.6.2.1. Reference processor
                6.14.6.2.2. section processor
                6.14.6.2.3. heading processor
                6.14.6.2.4. document control
                6.14.6.2.5. Table of contents
                   6.14.6.2.5.1. MSIE DOM ECMAScript
                   6.14.6.2.5.2. Table of contents generator
                6.14.6.2.6. Identifier Cross references
             6.14.6.3. Test Code
          6.14.7. LaTeX Weaver
             6.14.7.1. Initialisation
             6.14.7.2. Termination
             6.14.7.3. Identifier Cross Reference Table
             6.14.7.4. Class Reference Table
             6.14.7.5. Table of Contents
             6.14.7.6. Code File List
             6.14.7.7. Source List
             6.14.7.8. Latex Preamble
             6.14.7.9. Body Output and Mode Control
             6.14.7.10. Headings
             6.14.7.11. Tables
             6.14.7.12. Lists
                6.14.7.12.1. Numbered Lists
                6.14.7.12.2. Bullet Lists
                6.14.7.12.3. Keyed Lists
             6.14.7.13. Code Output
             6.14.7.14. Paragraphs
             6.14.7.15. Fonts
             6.14.7.16. Citations
          6.14.8. Llambda Weaver
             6.14.8.1. Lambda Class
             6.14.8.2. Omega Translation Process
                6.14.8.2.1. Build OCP
          6.14.9. Lout Weaver
             6.14.9.1. Introduction
             6.14.9.2. The Interscript--Lout Definitions
             6.14.9.3. The Lout Weaver Initialization
             6.14.9.4. Termination
             6.14.9.5. Lout Prolog and Epilog
             6.14.9.6. Prepare Text and Code for Lout
             6.14.9.7. Identifier Cross Reference Table
             6.14.9.8. Class Reference Table
             6.14.9.9. Table of Contents
             6.14.9.10. Code File List
             6.14.9.11. Source List
             6.14.9.12. Body Output and Mode Control
                6.14.9.12.1. Basic Output Operations
                6.14.9.12.2. Displays, Line and Page Breaks
             6.14.9.13. Code Displays
                6.14.9.13.1. Code Introduction and Epilog
                6.14.9.13.2. Code Formating
             6.14.9.14. Headings
                6.14.9.14.1. Heading Helper openLevels
                6.14.9.14.2. Heading Helper closeLevels
             6.14.9.15. Tables
                6.14.9.15.1. Begin the Table
                6.14.9.15.2. Setting a Row
                6.14.9.15.3. Quick Test of Tables
             6.14.9.16. Lists
                6.14.9.16.1. Numbered Lists
                6.14.9.16.2. Bullet Lists
                6.14.9.16.3. Keyed Lists
             6.14.9.17. Code Output
             6.14.9.18. Paragraphs
             6.14.9.19. Font Changes
             6.14.9.20. Anchors
             6.14.9.21. Citations
             6.14.9.22. End of Python--Lout Definitions
          6.14.10. Unimplemented Weavers
             6.14.10.1. microsoft word weaver
             6.14.10.2. microsoft help weaver
             6.14.10.3. nroff weaver
             6.14.10.4. postscript weaver
          6.14.11. auto weaver
       6.15. Weaver Filters
          6.15.1. Markup filtering weaver
          6.15.2. Convenience commands
       6.16. Tanglers
          6.16.1. Tangler Base class
          6.16.2. Null Tangler
          6.16.3. Document Tangler
          6.16.4. Data Tangler
          6.16.5. c Tangler
             6.16.5.1. c comment tangler
             6.16.5.2. c string tangler
          6.16.6. c++ Tangler
             6.16.6.1. Hash Tangler
             6.16.6.2. c++ comment tangler
          6.16.7. Java Tangler
          6.16.8. ocaml Tangler
             6.16.8.1. ocaml comment tangler
             6.16.8.2. ocaml string tangler
          6.16.9. Tcl Tangler
          6.16.10. Python Tangler
             6.16.10.1. Tokeniser interface
             6.16.10.2. Function generator
             6.16.10.3. Code generator
             6.16.10.4. Document generator
          6.16.11. Python Tangler
          6.16.12. Python comment tangler
          6.16.13. Perl Tangler
          6.16.14. Suggested replacement Code
       6.17. Tokenisers
          6.17.1. Python Tokeniser
             6.17.1.1. Callback Interface
             6.17.1.2. Server Interface
                6.17.1.2.1. Main Routine
          6.17.2. Parsers
             6.17.2.1. HTML Parser
       6.18. Html parser test
       6.19. Architecture
          6.19.1. The universal frame
          6.19.2. Install Frame
          6.19.3. The user frame
          6.19.4. The project frame
          6.19.5. The platform frame
          6.19.6. The site frame
          6.19.7. The process frame
             6.19.7.1. Execute Python Script
             6.19.7.2. Object tracing
          6.19.8. Master Frame
             6.19.8.1. Run the passes
          6.19.9. The pass frame
             6.19.9.1. Construct input object
          6.19.10. Input Frame
             6.19.10.1. The input frame
                6.19.10.1.1. Post user methods
                6.19.10.1.2. help
                6.19.10.1.3. close
                6.19.10.1.4. Process file data
             6.19.10.2. Commands
                6.19.10.2.1. Invoke interscript
                   6.19.10.2.1.1. Implementation
                   6.19.10.2.1.2. Test
                6.19.10.2.2. Misc: move these
                6.19.10.2.3. begin/end blocks
                   6.19.10.2.3.1. Begin/end test
                6.19.10.2.4. Include file/source
                6.19.10.2.5. Encoding
                6.19.10.2.6. Dependency checking
                6.19.10.2.7. Include/insert code
                6.19.10.2.8. Include html
                6.19.10.2.9. Weaver Control
                6.19.10.2.10. Anchors
                6.19.10.2.11. Parsing
                6.19.10.2.12. Input functions
                6.19.10.2.13. Untangle
                6.19.10.2.14. Parser functions
                   6.19.10.2.14.1. Utilities
                6.19.10.2.15. Collect stuff
                6.19.10.2.16. Execute collected python
                   6.19.10.2.16.1. Test python function
                   6.19.10.2.16.2. Print diff table
                6.19.10.2.17. Register Test
                6.19.10.2.18. Python Test
                   6.19.10.2.18.1. Test 17: Python test test
                   6.19.10.2.18.2. Test 18: Python diff test
                6.19.10.2.19. Match Processing functions
                   6.19.10.2.19.1. Single Line Python Script
                   6.19.10.2.19.2. Multi-Line Python Script
                   6.19.10.2.19.3. Ordinary Text
                   6.19.10.2.19.4. Doubled Warning character
                   6.19.10.2.19.5. Html input
                6.19.10.2.20. The Tangler Stack
                6.19.10.2.21. Tangler Constructors
                6.19.10.2.22. Managing the tangler stack
                6.19.10.2.23. Miscellaneous
                6.19.10.2.24. Capture command output
                6.19.10.2.25. Documentation Constructions
                   6.19.10.2.25.1. Headings
                   6.19.10.2.25.2. Paragraphs
                   6.19.10.2.25.3. Citations
                   6.19.10.2.25.4. Tables
                   6.19.10.2.25.5. Lists
                   6.19.10.2.25.6. Fonts
                   6.19.10.2.25.7. Displays
                   6.19.10.2.25.8. Notices
       6.20. Module getoptions
          6.20.1. Test 19: generic getoptions module
       6.21. Get Options
          6.21.1. Help Dictionary
          6.21.2. Argument Frame
       6.22. Language Translation
          6.22.1. Run Time Phrase translation
          6.22.2. Phrase translation Test
          6.22.3. Weaver selection test
       6.23. Utility Modules
          6.23.1. System Configuration module
          6.23.2. compiler package
             6.23.2.1. Test
          6.23.3. Interscript Standard module diff for Python
             6.23.3.1. Description
             6.23.3.2. Requirements
             6.23.3.3. Posix Implementation
             6.23.3.4. Test routine 1
             6.23.3.5. Test Routine 2
                6.23.3.5.1. Test 23: Python diff test
          6.23.4. Commands
       6.24. Application and tool directory
          6.24.1. Stand alone unix/nt mainline
          6.24.2. Windows launcher
       6.25. Test package
    7. Appendices
       7.1. Bug History
       7.2. Bugs (etc) for Version 1a7
          7.2.1. These debugging notes
          7.2.2. Control System
          7.2.3. Tangler Bugs
          7.2.4. Weaver Bugs
          7.2.5. Misc Bugs
          7.2.6. Design Issues
          7.2.7. Omissions
             7.2.7.1. Building
             7.2.7.2. Scripting
             7.2.7.3. Parsing
             7.2.7.4. Weaving
             7.2.7.5. Tangling
          7.2.8. New in 1a5
             7.2.8.1. Separate compilation
          7.2.9. Under development and planned
       7.3. Bugs (etc) for Version 1a8
          7.3.1. These debugging notes
          7.3.2. Control System
          7.3.3. Tangler Bugs
          7.3.4. Weaver Bugs
          7.3.5. Misc Bugs
          7.3.6. Design Issues
          7.3.7. Omissions
             7.3.7.1. Building
             7.3.7.2. Scripting
             7.3.7.3. Parsing
             7.3.7.4. Weaving
             7.3.7.5. Tangling
          7.3.8. New in 1a5
             7.3.8.1. Separate compilation
          7.3.9. Under development and planned
       7.4. Bugs (etc) for Version 1a9
          7.4.1. New features
          7.4.2. Fixed bugs
       7.5. Installation Guide
          7.5.1. What you need
          7.5.2. Where to get it
             7.5.2.1. Getting Python
             7.5.2.2. Getting GNU tools
             7.5.2.3. Getting Omega
             7.5.2.4. Configuring your browser for UTF-8
             7.5.2.5. Configuring your browser for XML
             7.5.2.6. Configuring your editor
          7.5.3. Instant install
             7.5.3.1. Unpack the archive
             7.5.3.2. Unix: Make the command line launch script executable
             7.5.3.3. Windows: Make the command line launch script executable
             7.5.3.4. Mac: write a launch script
             7.5.3.5. Install doco
             7.5.3.6. Test It
          7.5.4. Configuration
             7.5.4.1. Compilers sub-package
             7.5.4.2. Diff sub-package
             7.5.4.3. Command line tool execution
             7.5.4.4. Other
          7.5.5. Building Interscript
          7.5.6. NT Issues
       7.6. Make tarball
       7.7. Makefile