Giter VIP home page Giter VIP logo

haxemanual's Introduction

Build Status

Contributions / Information for authors

For contributions please edit the .md files in content/.

The manual is separated into chapters. Each chapter resides in its own .md file. The syntax is Markdown for the most part, with some special comments mixed in.

Markdown syntax

Standard syntax can be used freely (and in moderation).

Sections and labels

On https://haxe.org/manual, the manual is separated into individual pages. Each page has its own URL and represents a section. Every section has a title and a label. For backward compatibility and flexibility in titles, the label of a section is not directly based on its title.

As an example, the "Property" section has the label class-field-property (which you can see in its URL).

To give a section a label:
<!--label:here-is-the-label-->
## Here is the title

The nesting level of a section depends on the heading level (number of # characters in the title):

  • ## denotes a chapter, only one per .md file
  • ### denotes a section
  • #### denotes a subsection
  • ##### denotes a paragraph (when used without the label tag) or a subsubsection (when used with a label tag)

Links to sections

To reference another section, use the regular Markdown link syntax with the label in place of the URL.

To reference a section:
Please see the [hello world](introduction-hello-world) section.

Haxe code assets (CI-tested)

The Haxe files in the assets/ directory form the majority of the Haxe code samples that are included in the manual. All of these files are automatically tested with Travis CI for all Haxe targets. For the testing procedures and rules, see tests/RunTravis.hx.

On haxe.org, the code samples can be seen included in the sections for a comfortable reading experience. In the .md sources, however, the Haxe files are only referenced with a link to avoid code duplication.

When creating new code assets, please make sure to use haxe-formatter on the file before committing it. The configuration file hxformat.json is provided in the repository.

To include a Haxe code asset:
[code asset](assets/HelloWorld.hx)

The above needs to be on its own line. The code asset text cannot be changed (it is not displayed to the reader anyway).

To include a smaller part of a Haxe code asset:
[code asset](assets/HelloWorld.hx#L2-L4)

The above would only show lines 2 through 4 (inclusive).

Code assets (direct)

Code can also be included in the Markdown content directly. This is convenient for very short snippets, snippets in other languages, or code that is not correct. Where possible, however, please use the CI-tested variant described above.

To include a snippet of Haxe code:
```haxe
trace("Hello, world!");
```
To include a snippet of another language:
```js
console.log("Hello, world!");
```

Code (inline)

Finally, short expressions can be included directly in the text by surrounding the code with backticks.

Flowcharts

Flowcharts are included as svg images:

![](assets/figures/type-system-resolution-order-diagram.svg)

Version information

To indicate that the following information is only true starting from a given Haxe version:
##### since Haxe 4.0.0

Definition

To give a concise definition of a term:
> ##### Define: Some Term
>
> This is the definition of the term.
>
> It can span multiple lines and use other Markdown syntax, too.

Definitions can be referenced from other parts of the manual. Their label is based on the term they describe, e.g. define-some-term for the example above.

Trivia

To give additional information, not crucial to understanding Haxe:
> ##### Trivia: Some Factoid
>
> This is something that is not very important.

Metadata and defines lists

The metadata and define tables are generated automatically from JSON definitions. To update the generated files from the current development branch, simply run haxe generate.hxml in the generate directory (requires curl to be installed and in PATH).

Manual preview

When working on the manual, any Markdown preview (including GitHub renderer) should suffice to show if the text looks correct. To make sure the special Haxe Manual-specific syntax works as expected, please use a local instance of haxe.org. The workflow consists of:

  1. Clone the haxe.org and HaxeManual repositories
  2. Replace the manual directory in haxe.org with a symlink to your local copy of HaxeManual
  3. Start the haxe.org server (haxe start-server.hxml & in the haxe.org repository)
  4. Make changes to the .md files
  5. Run haxe generate.hxml in the haxe.org repository
  6. Check results on localhost:2000, repeat from step 4

You can disable all haxe.org generators except the manual generator in Main.hx to hasten the generation process. A significant speed-up can also be gained by turning off the syntax highlighting.

haxemanual's People

Contributors

andyli avatar archiloque avatar aszasz avatar atry avatar aurel300 avatar calebharper avatar confidantcommunications avatar frederisk avatar gama11 avatar iamrajiv avatar ibilon avatar jasononeil avatar jdonaldson avatar jmdejong avatar jonasmalacofilho avatar markknol avatar nadako avatar paul59 avatar player-03 avatar rblsb avatar realyuniquename avatar richardbray avatar romamik avatar shohei909 avatar simn avatar smilyorg avatar tobil4sk avatar uvtc avatar vincentb1 avatar zanadev avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

haxemanual's Issues

Terminology

At the WWX it came up some issues with have with our terminology. For example, native may mean either the host platform code as the actual native code implementation. I think it would be a good think if we could try to spot them and more precisely define them.
For now, I propose that we discuss what to do with the native term. IIRC @frabbit proposed that we used the VM terminology of host and guest.

Mess with compiler section in manual

There are several unorganized things in the manual menu :
There is
Compiler reference (that only contains an empty metadata section which btw exists in the language feature section)
and Compiler Features

I suggest to put everything under
Compiler

  • references (is that really needed ?)
  • features
  • flags (as suggested in another issue), that can be at tit turn decomposed for each target

@:arrayAccess not only for abstract ?

Hi, it seems that array access can be used for class too.
see openfl.utils.Int32Array
it true, it means its not only for abstract, and so arrAccess paragraph 2.8.3 should not be linked to abstract in paragraph structure.

Thanks

Macro Type not documented

I couldn't find the documentation for haxe.macro.MacroType in the Manual, maybe it should be added to the macro section ?

Also, there seems to be missing sections in "Limitations" ( 9.6.1 and 9.6.4 )

Inconsistent style and syntax highlighting

I'd normally fix this directly, but the right answer is not obvious here:

First: should there be a space after the class name (class MathStaticExtension {) or not (class TestMath{)?

Second: When defining functions, should the curly brace show up on the same line (main(){) or not?

Third: why isn't the comment /** Converts an angle in radians to degrees. */ recognized as a comment?

Validation errors in HaxeManual.epub

I can view HaxeManual.epub on my Mac perfectly but can't open it on my Android even though it has built-in support for epub-files through Google Play Books.
I tested it using an EPUB Validator which gave the following list of issues (which may or may not cause it to fail to open on Android):

EPUB Validator (beta)

Results

Detected version: EPUB 2.0

Results: The following problems were found in HaxeManual.epub:

Type    File    Line    Position    Message
ERROR   ch001.xhtml 31  91  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 31  490 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 31  3772    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 31  5726    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 31  6292    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 35  740 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 35  3468    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 38  1798    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 38  2643    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 38  3295    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 38  4113    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 38  8735    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 39  232 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 45  107 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 53  149 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 58  519 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 68  1539    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 68  2844    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 74  1452    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 86  361 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 91  1164    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 107 1075    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 129 895 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 159 52  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 159 997 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 162 59  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 162 591 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 172 1473    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 185 1390    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 202 181 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 203 1563    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 209 95  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 240 46  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 250 1765    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 308 336 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 345 365 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 359 127 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 378 769 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 410 507 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 429 653 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 429 1885    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 429 2246    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 429 3284    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 434 54  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 461 59  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 478 951 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 495 1083    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 534 83  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 559 52  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 606 898 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 611 2136    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 611 2940    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 614 662 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 614 966 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 614 2380    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 626 423 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 640 486 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 658 484 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 658 1185    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 658 2935    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 661 589 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 680 307 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 680 4116    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 680 5833    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 688 949 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 691 2383    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 742 71  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 756 199 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 792 770 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 804 894 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 822 947 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 841 754 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 841 1126    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 874 1155    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 892 849 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 902 672 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 902 1439    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 902 2809    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 918 362 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 918 1401    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 921 384 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 926 200 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 926 868 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 926 1651    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 930 66  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 936 215 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 944 1137    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 950 434 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 950 1760    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 958 290 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 958 995 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 960 457 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 964 514 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 966 1404    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 973 583 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 977 399 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 981 332 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 981 810 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 982 156 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 991 795 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1007    960 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1007    1840    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1017    1404    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1026    980 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1038    1552    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1046    1007    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1046    1992    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1049    376 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1060    790 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1070    491 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1076    522 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1084    270 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1089    238 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1097    309 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1102    456 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1157    214 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1159    251 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1164    55  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1169    689 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1192    44  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1242    315 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1253    1764    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1275    1692    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1313    460 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1331    51  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1331    225 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1331    551 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1331    3733    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1331    4040    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1331    4470    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1331    5098    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1335    221 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1341    198 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1341    1077    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1348    49  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1348    3129    value of attribute "href" is invalid; must be a URI
ERROR   ch001.xhtml 1348    5696    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1348    7740    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1348    9657    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1360    286 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1376    1017    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1389    172 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1403    49  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1403    413 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1403    2677    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1403    3678    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1420    458 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1420    2439    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1444    1765    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1485    48  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1517    254 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1517    635 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1535    61  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1563    376 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1563    1790    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1563    1932    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1563    2121    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1563    2539    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1600    273 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1612    313 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1620    47  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1631    526 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1679    815 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1703    41  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1703    2711    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1711    48  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1737    49  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1752    47  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1759    45  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1768    215 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1768    687 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1789    55  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1789    552 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1789    899 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1789    1453    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1803    46  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1844    270 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1889    444 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1889    4778    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1889    5004    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1911    49  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1917    63  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1917    1165    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1917    1922    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1922    801 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1940    55  attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1940    2548    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1943    440 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1943    693 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1943    1049    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1943    1289    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    392 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    611 attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    2476    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    2791    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    3421    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    3768    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    4248    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    4631    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    5074    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    5281    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    5676    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    6179    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    6510    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    6854    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    7190    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    7597    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    7762    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    8052    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    8474    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    8900    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    9095    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    9332    attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    10148   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    10296   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    10688   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    11045   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    11301   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    11530   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    12093   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    12526   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    12902   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    13313   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    13603   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    13773   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    14016   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    14304   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    14638   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    15004   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 1950    15232   attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "lang", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"
ERROR   ch001.xhtml 31  216 'introduction-what-is-haxe.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  292 'introduction-about-this-document.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  366 'introduction-hello-world.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  433 'introduction-haxe-history.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  1833    'introduction.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  1984    'types.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  2153    'type-system.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  2336    'class-field.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  2566    'expression.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  2696    'lf.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  3031    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  3125    'cr-features.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  3249    'macro.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  3365    'std.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  3534    'haxelib.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 31  3700    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 38  497 'type-system-type-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 38  1672    'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 38  1729    'types-function.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 38  2421    'types-class-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 38  2487    'types-abstract.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 38  9096    'expression-if.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 38  9167    'expression-while.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 43  103 'types-function.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 51  210 'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 58  445 'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 58  964 'class-field.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 68  388 'dictionary.md-define-identifier': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 68  1451    'std-reflection.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 68  1966    'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 68  2556    'types-class-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 68  2692    'expression-new.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 74  1210    'class-field-method.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 74  1392    'class-field-overriding.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 76  236 'expression.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 76  383 'type-system-structural-subtyping.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 86  625 'expression.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 91  388 'dictionary.md-define-identifier': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 107 703 'type-system-type-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 107 1289    'types-enum-constructor.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 129 165 'expression-switch.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 129 635 'expression-var.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 129 828 'lf-pattern-matching.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 133 323 'dictionary.md-define-identifier': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 149 344 'type-system-type-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 153 165 'type-system-typedef.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 159 705 'dictionary.md-define-identifier': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 159 832 'std-reflection.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 159 1239    'class-field.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 159 1305    'type-system-typedef.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 162 248 'type-system-structural-subtyping.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 162 367 'dictionary.md-define-dynamic-target': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 162 446 'dictionary.md-define-static-target': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 162 745 'types-monomorph.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 185 916 'types-nullability.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 185 1127    'dictionary.md-define-static-target': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 198 111 'types-function-optional-arguments.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 198 586 'class-field-inline.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 202 926 'cr-dce.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 203 859 'std-reflection.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 203 1087    'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 203 1136    'types-monomorph.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 203 1210    'type-system-monomorphs.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 203 1822    'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 203 1935    'types-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 209 244 'types-interfaces.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 225 374 'dictionary.md-define-read-access': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 244 1134    'class-field-method.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 244 1207    'dictionary.md-define-physical-field': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 244 1255    'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 250 335 'class-field-inline.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 250 1177    'types-abstract-selective-functions.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 283 555 'types-abstract-selective-functions.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 286 97  'class-field-inline.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 328 128 'types-abstract-implicit-casts.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 345 737 'std.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 359 471 'lf-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 410 81  'class-field-inline.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 410 276 'lf-pattern-matching.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 410 387 'lf-pattern-matching-exhaustiveness.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 410 'macro-type-building.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 1623    'types-abstract-array-access.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 1735    'types-abstract-operator-overloading.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 2046    'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 2195    'type-system-type-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 2399    'types.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 2537    'type-system-typedef.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 2729    'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 2992    'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 3164    'type-system-modules-and-paths.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 429 3452    'types-anonymous-structure.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 432 143 'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 445 245 'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 461 246 'class-field.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 461 304 'types-enum-constructor.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 463 147 'types-monomorph.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 463 431 'type-system-type-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 463 693 'type-system-type-parameter-constraints.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 463 907 'expression-cast.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 463 1082    'type-system-generic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 495 233 'type-system-typedef.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 495 346 'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 495 1652    'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 495 1907    'dictionary.md-define-static-target': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 505 159 'type-system-type-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 548 87  'type-system-top-down-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 548 395 'type-system-type-parameter-constraints.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 548 461 'types-class-constructor.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 591 113 'expression-cast.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 591 899 'type-system-structural-subtyping.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 606 415 'dictionary.md-define-compound-type': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 606 682 'dictionary.md-define-compound-type': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 606 1439    'types-monomorph.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 611 777 'types-function.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 611 1531    'type-system-unification-common-base-type.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 611 3391    'std.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 614 593 'types-structure-performance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 614 817 'types-monomorph.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 614 887 'type-system-type-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 614 1140    'types-void.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 633 157 'types-function.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 633 615 'types-monomorph.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 633 819 'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 633 1026    'types-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 640 1139    'type-system-top-down-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 640 1268    'types-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 644 352 'type-system-unification-common-base-type.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 644 587 'type-system-generic-type-parameter-construction.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 658 796 'class-field-variable.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 658 847 'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 658 2327    'type-system-module-sub-types.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 658 2445    'type-system-import.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 658 2639    'type-system-resolution-order.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 661 286 'dictionary.md-define-module': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 661 531 'lf-access-control.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 674 86  'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 674 548 'type-system-resolution-order.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 674 623 'lf-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 674 838 'types-enum-constructor.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 674 1028    'class-field.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 522 'expression.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 910 'expression-var.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 1012    'type-system-import.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 1114    'lf-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 1410    'dictionary.md-define-expected-type': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 3852    'lf-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 3971    'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 4795    'expression.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 4927    'class-field-variable.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 5076    'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 5259    'class-field-method.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 680 5729    'expression-function.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 688 317 'class-field-access-modifier.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 688 797 'type-system-type-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 688 1072    'class-field-variable.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 688 1840    'expression-field-access.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 688 2125    'expression-field-access.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 688 2302    'dictionary.md-define-read-access': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 764 337 'class-field-variable.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 764 401 'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 764 561 'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 764 625 'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 778 167 'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 792 887 'class-field-variable.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 792 991 'expression.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 792 1135    'introduction-hello-world.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 796 349 'class-field-access-modifier.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 804 306 'types-function.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 804 401 'type-system-type-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 804 1263    'types-class-inheritance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 822 1163    'type-system-variance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 841 240 'class-field-visibility.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 841 496 'class-field-inline.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 841 892 'class-field-visibility.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 841 953 'class-field-inline.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 841 1011    'class-field-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 841 1071    'class-field-override.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 854 666 'types-class-inheritance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 874 688 'types-interfaces.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 874 767 'class-field-overriding.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 902 894 'types-class-inheritance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 902 1300    'class-field-overriding.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 902 1390    'class-field-method.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 902 1665    'class-field-method.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 902 2655    'dictionary.md-define-name': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 902 2730    'macro-reification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 907 221 'expression-var.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 907 327 'expression-function.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 918 187 'expression-try-catch.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 918 237 'expression-return.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 918 549 'dictionary.md-define-int': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 918 724 'dictionary.md-define-float': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 918 894 'dictionary.md-define-string': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 918 1091    'dictionary.md-define-bool': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 918 1251    'dictionary.md-define-identifier': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 918 1341    'macro.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 921 148 'class-field-inline.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 921 310 'lf-array-comprehension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 926 131 'types-anonymous-structure.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 926 794 'type-system-resolution-order.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 926 1499    'types-abstract.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 926 1584    'types-abstract-array-access.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 930 307 'dictionary.md-define-identifier': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 936 164 'expression-block.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 936 451 'class-field-method.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 944 100 'expression-block.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 944 342 'expression-var.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 944 995 'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 944 1287    'types-class-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 944 1332    'types-abstract.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 944 1432    'dictionary.md-define-type-path': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 944 1555    'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 950 315 'expression-function-call.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 950 1624    'expression-break.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 950 1685    'expression-continue.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 958 231 'expression-do-while.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 958 945 'expression-while.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 960 318 'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 964 110 'expression-break.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 964 336 'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 964 452 'lf-pattern-matching.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 966 227 'expression-throw.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 966 908 'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 966 1095    'types-class-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 966 1150    'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 966 1209    'types-abstract-core-type.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 966 1265    'types-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 966 1348    'types-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 967 200 'expression-function.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 973 397 'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 977 304 'expression-switch.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 981 681 'expression-try-catch.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 982 396 'types-monomorph.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 982 534 'types-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 991 292 'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 991 557 'dictionary.md-define-dynamic-target': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 991 680 'dictionary.md-define-static-target': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 991 924 'expression-cast-unsafe.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    201 'types-class-inheritance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    526 'expression-throw.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    623 'expression-try-catch.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1100    'lf-condition-compilation.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1164    'lf-externs.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1221    'lf-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1287    'lf-pattern-matching.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1357    'lf-string-interpolation.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1430    'lf-array-comprehension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1492    'lf-iterators.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1552    'lf-function-bindings.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1611    'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1668    'lf-access-control.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1735    'lf-inline-constructor.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1007    1783    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1017    1752    'class-field-method.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1017    1902    'std.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1021    165 'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1026    406 'haxelib.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1026    537 'compiler-reference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1026    635 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1026    921 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1038    1120    'type-system-resolution-order.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1038    1428    'type-system-modules-and-paths.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    549 'macro-tools.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1157    'lf-pattern-matching-introduction.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1227    'lf-pattern-matching-enums.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1309    'lf-pattern-matching-variable-capture.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1387    'lf-pattern-matching-structure.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1463    'lf-pattern-matching-array.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1532    'lf-pattern-matching-or.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1602    'lf-pattern-matching-guards.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1667    'lf-pattern-matching-tuples.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1754    'lf-pattern-matching-extractors.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1832    'lf-pattern-matching-exhaustiveness.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    1913    'lf-pattern-matching-unused.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1046    2269    'expression-switch.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1149    392 'lf-pattern-matching-variable-capture.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1149    511 'lf-pattern-matching-or.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1199    57  'types-class-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1199    120 'type-system-structural-subtyping.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1199    227 'expression-for.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1275    1404    'expression-constants.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1275    1475    'expression-array-declaration.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1275    1589    'expression-object-declaration.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1275    1862    'class-field-visibility.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1275    2168    'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1275    2343    'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1275    2465    'dictionary.md-define-type-path': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1302    1320    'types-interfaces.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1313    714 'class-field-inline.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    172 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    347 'cr-dce.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    396 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    449 'cr-resources.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    496 'cr-rtti.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    1482    'types-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    1526    'std-reflection.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    2869    'lf-condition-compilation.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    3836    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    3878    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    3922    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    3957    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1331    3995    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1341    1577    'cr-rtti-structure.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    297 'dictionary.md-define-type-path': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    406 'dictionary.md-define-module': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    636 'macro.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    761 'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    892 'type-system-type-parameter-constraints.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    1047    'dictionary.md-define-compiler-flag': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    1285    'dictionary.md-define-private-type': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    1631    'lf-externs.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    1741    'types-interfaces.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    2032    'class-field.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    2118    'cr-rtti-structure.md': referenced resource missing in the package.
ERROR   ch001.xhtml 1348    2271    'cr-rtti-structure.md': referenced resource missing in the package.
ERROR   ch001.xhtml 1348    2382    'types-dynamic-implemented.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    2639    'lf-externs.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    2906    'types-abstract-implicit-casts.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    3025    'types-abstract-implicit-casts.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    3129    'cr-rtti-structure.md#class-type-information': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    3256    'dictionary.md-define-underlying-type': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    3566    'class-field-visibility.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    3664    'class-field-override.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    3832    'dictionary.md-define-compiler-flag': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    4041    'dictionary.md-define-read-access': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    4148    'dictionary.md-define-write-access': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    4324    'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    4456    'type-system-type-parameter-constraints.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    5343    'dictionary.md-define-compiler-flag': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    6486    'expression.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    7164    'macro-initialization.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    7358    'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    7575    'macro-type-building.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    9153    'macro-initialization.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    9400    'macro-limitations-build-order.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1348    9569    'lf-condition-compilation.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1360    178 'macro-reification-expression.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1360    692 'lf-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1376    325 'macro-arguments.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1376    497 'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1376    1192    'expression-constants.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1403    1902    'types-basic-types.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1403    1956    'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1420    685 'lf-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1420    1523    'type-system-unification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1420    1903    'type-system-typedef.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1420    2818    'macro-context.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1420    3132    'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1420    3185    'types-class-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1420    3232    'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1444    394 'class-field-variable.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1444    995 'types-class-inheritance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1444    1046    'types-interfaces.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1444    1900    'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1482    375 'macro-reification-expression.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1482    612 'lf-pattern-matching.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1517    200 'macro-limitations-build-order.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1517    361 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1517    442 'macro-limitations-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1517    520 'macro-limitations-build-order.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1517    561 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1517    785 'lf-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1535    272 'macro-type-building.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1535    644 'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    1651    'macro-context.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    2248    'std-Array.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    2297    'std-vector.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    2345    'std-List.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    2399    'std-GenericStack.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    2452    'std-Map.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    2499    'std-Option.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    2720    'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    2955    'expression-array-declaration.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    3068    'lf-array-comprehension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1563    3331    'expression-array-access.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1570    399 'dictionary.md-define-default-value': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1570    453 'types-basic-types.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1570    518 'dictionary.md-define-static-target': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1570    771 'lf-iterators.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1570    899 'expression-while.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1589    128 'types-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1600    478 'std-Array.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1600    542 'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1600    699 'expression-for.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1600    773 'types-abstract-array-access.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1612    111 'types-abstract.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1612    527 'std-Array.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1620    303 'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1631    456 'type-system-generic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1679    180 'types-abstract.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1679    748 'types-abstract-array-access.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1679    944 'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1768    1126    'types-numeric-operators.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1789    1596    'lf-static-extension.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1803    643 'types-anonymous-structure.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1803    729 'types-class-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1803    843 'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1803    1201    'std-String.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1812    269 'cr-dce.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1812    508 'types-dynamic.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1859    127 'std-String.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1859    253 'std-serialization-format.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1859    665 'std-Array.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1859    715 'std-List.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1859    900 'types-anonymous-structure.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1859    979 'types-class-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1859    1065    'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1859    2457    'cr-dce.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1889    304 'cr-dce.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1895    240 'types-anonymous-structure.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1917    595 'types-enum-instance.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1917    643 'std-Map.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1917    2379    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1922    750 'haxelib-using.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1922    1738    'haxelib-json-versioning.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1922    2060    'haxelib-json-dependencies.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1940    2787    'haxelib-json.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1940    2955    'haxelib-json-versioning.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1943    802 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1943    841 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1943    875 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1943    908 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1943    940 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1943    972 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1943    1005    '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1943    1182    'target-javascript-require.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    502 'target-cpp-defines.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    550 '': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    3352    'std-reflection.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    6382    'type-system-type-parameters.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    6439    'types-function.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    6646    'dictionary.md-define-compound-type': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    6982    'dictionary.md-define-compound-type': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    8833    'type-system-top-down-inference.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    10002   'dictionary.md-define-name': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    10077   'macro-reification.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    11736   'class-field-variable.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    11800   'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    11960   'class-field-property.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    12024   'lf-metadata.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    12355   'dictionary.md-define-module': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    12701   'expression-field-access.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    14947   'types-monomorph.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    15394   'expression-field-access.md': fragment identifier is not defined in 'ch001.xhtml'
ERROR   ch001.xhtml 1950    15571   'dictionary.md-define-read-access': fragment identifier is not defined in 'ch001.xhtml'
Validated using EpubCheck version 3.0.1.

add more details about rational behind some surprising design choices

Hi,
it would be great to explain in manual the rationnal behind design choices that are unexpected compared to java / C# / actionscript.
For example in: 04-class-field.tex chapter it would be usefull to explain why theres is no "real" private notion and only protected one is used.
Same need to explain the constructor function name new, even if its more easy to understand.
And also same need for for loops that only use the foreach paradigm and no more the classical for(i=0, i<length, i++). by the way the for loop chapter should also explain how to use haxe for loop to do a for i loop with for(i in 0..length)

thanks

document environment variables for haxe and haxelib

i often need a reminder on what environment variable do i need to set up for haxe and haxelib to make it work in non-standard setups, like I have here - having haxe and libs under the project repository.

so I think it makes sense to add a section describing environment variables that make sense for haxe, like HAXE_STD_PATH

No Documentation on How to Build/Compile the Manual Yourself

It would be great if there was some info in the README on how to compile/build different versions of the manual yourself.

At the moment, I'm lost on how to build this via pdflatex. pdflatex HaxeDoc.tex spits up errors about a missing file, and I'm unsure if this is self-inflicted (via missing parameters in the command) or due to an issue with the repo. Simn on #haxe was able to compile an updated PDF using what I gather is a latex editor GUI, but documentation here is sorely needed for those looking to learn haxe, but are unable to build the manual without a little help.

Update - the errors I encountered seem to be due to a number of missing tex packages (framed, preprint, etc. etc. etc.). Should be noted somewhere in the docs that the build requires texlive-full; or mactex full; not the basic version.

Guard code snippet does not include guards

06-language-features.tex includes the following snippet under the label lf-pattern-matching-guards:

It is also possible to further restrict patterns with the \expr{case ... if(condition):} syntax:

\haxe[firstline=64,lastline=72]{assets/PatternMatching.hx}

The first case has an additional guard condition \expr{if (b > a)}.

However, the referenced code snippet is as follows:

 trace(match); // 1


    var match = switch(7) {
      case 4 | 1: "0";
      case 6 | 7: "1";
      case _: "2";
    }
    trace(match); // 1

No case ... if(condition):. It's also picked up the trace() statement from the previous section -- presumably some new code was inserted that threw off the line numbering. I'm not sure what block this was intended to refer to, since the if (b > a) doesn't appear until the next example, which introduces matches on arrays. If it should go with the next code snippet, I can submit a pull request to that effect.

Document options and defines related to .NET DLL support

I always forget about how/where haxe gets .NET dlls, so it would be nice to document that eventually, so we don't have to look into haxe sources to find out.

Here's a list of related options:

  • -net-lib (and @std postfix)
  • -net-std
  • -D net-target
  • -D net-ver
  • NET_* automatic defines

Hope I haven't forget anything.
@waneck How stable is this? Can we document it or it's subject to change?

Why latex -> md and not the other way around?

Great work on the manual!

I'm just wondering about the current workflow. LaTeX is more complex than markdown, why not just using markdown for the content and then convert to LaTeX using a custom parser (like the one being used now) or just use PrinceXML?

Add some \paragraph

Now that I learned about \paragraph I have to go through the manual again and add some so we get more link targets.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.