Add linkcheck, fix typos and expand.
This commit is contained in:
@@ -4,7 +4,7 @@ The Rhai Scripting Language
|
||||
1. [What is Rhai](about.md)
|
||||
1. [Features](about/features.md)
|
||||
2. [Supported Targets and Builds](about/targets.md)
|
||||
3. [What Rhai Doesn't Do](about/non-design.md)
|
||||
3. [What Rhai Isn't](about/non-design.md)
|
||||
4. [Related Resources](about/related.md)
|
||||
2. [Getting Started](start.md)
|
||||
1. [Install the Rhai Crate](start/install.md)
|
||||
@@ -12,7 +12,7 @@ The Rhai Scripting Language
|
||||
3. [Special Builds](start/builds.md)
|
||||
1. [Performance Build](start/builds/performance.md)
|
||||
2. [Minimal Build](start/builds/minimal.md)
|
||||
3. [`no-std` Build](start/builds/no-std.md)
|
||||
3. [no-std Build](start/builds/no-std.md)
|
||||
4. [WebAssembly (WASM)](start/builds/wasm.md)
|
||||
4. [Examples](start/examples.md)
|
||||
1. [Rust](start/examples/rust.md)
|
||||
@@ -23,14 +23,16 @@ The Rhai Scripting Language
|
||||
3. [Call a Rhai Function from Rust](engine/call-fn.md)
|
||||
4. [Create a Rust Anonymous Function from a Rhai Function](engine/func.md)
|
||||
5. [Evaluate Expressions Only](engine/expressions.md)
|
||||
6. [Raw `Engine`](engine/raw.md)
|
||||
6. [Raw Engine](engine/raw.md)
|
||||
4. [Extend Rhai with Rust](rust.md)
|
||||
1. [Traits](rust/traits.md)
|
||||
2. [Register a Rust Function](rust/functions.md)
|
||||
1. [`String` Parameters in Rust Functions](rust/strings.md)
|
||||
1. [String Parameters in Rust Functions](rust/strings.md)
|
||||
3. [Register a Generic Rust Function](rust/generic.md)
|
||||
4. [Register a Fallible Rust Function](rust/fallible.md)
|
||||
5. [Packages](rust/packages.md)
|
||||
1. [Built-in Packages](rust/packages/builtin.md)
|
||||
2. [Create a Custom Package](rust/packages/create.md)
|
||||
6. [Override a Built-in Function](rust/override.md)
|
||||
7. [Operator Overloading](rust/operators.md)
|
||||
8. [Register a Custom Type and its Methods](rust/custom.md)
|
||||
@@ -38,13 +40,13 @@ The Rhai Scripting Language
|
||||
2. [Indexers](rust/indexers.md)
|
||||
3. [Disable Custom Types](rust/disable-custom.md)
|
||||
4. [Printing Custom Types](rust/print-custom.md)
|
||||
9. [`Scope` - Initializing and Maintaining State](rust/scope.md)
|
||||
9. [Scope - Initializing and Maintaining State](rust/scope.md)
|
||||
10. [Engine Configuration Options](rust/options.md)
|
||||
5. [Rhai Language Reference](language.md)
|
||||
1. [Comments](language/comments.md)
|
||||
2. [Values and Types](language/values-and-types.md)
|
||||
1. [`Dynamic` Values](language/dynamic.md)
|
||||
2. [`type-of`](language/type-of.md)
|
||||
1. [Dynamic Values](language/dynamic.md)
|
||||
2. [type-of()](language/type-of.md)
|
||||
3. [Numbers](language/numbers.md)
|
||||
1. [Operators](language/num-op.md)
|
||||
2. [Functions](language/num-fn.md)
|
||||
@@ -71,11 +73,12 @@ The Rhai Scripting Language
|
||||
2. [Call Method as Function](language/method.md)
|
||||
15. [Print and Debug](language/print-debug.md)
|
||||
16. [Modules](language/modules.md)
|
||||
1. [Export Variables and Functions](language/modules/export.md)
|
||||
1. [Export Variables, Functions and Sub-Modules](language/modules/export.md)
|
||||
2. [Import Modules](language/modules/import.md)
|
||||
3. [Create from Rust](language/modules/rust.md)
|
||||
4. [Create from `AST`](language/modules/ast.md)
|
||||
4. [Create from AST](language/modules/ast.md)
|
||||
5. [Module Resolvers](language/modules/resolvers.md)
|
||||
1. [Implement a Custom Module Resolver](language/modules/imp-resolver.md)
|
||||
6. [Safety and Protection](safety.md)
|
||||
1. [Checked Arithmetic](safety/checked.md)
|
||||
2. [Sand-Boxing](safety/sandbox.md)
|
||||
|
Reference in New Issue
Block a user