feat: add category metadata to doc pages and switch code blocks from wren to dart

Add `^category` front matter to branching, classes, error-handling, fibers, functions, lists, looping, maps, method-calls, performance, and qa markdown files. Create new placeholder pages for contributing, core-libraries, and embedding-api under reference category. Remove old embedding and getting-involved pages. Change all `:::wren` code block annotations to `:::dart` across multiple documentation files. Update index title from "Welcome" to "Welcome!" and fix a typo in the Wren class example string. Refine performance page wording for clarity.
This commit is contained in:
Bob Nystrom
2014-04-16 15:00:42 +00:00
24 changed files with 341 additions and 175 deletions
+1
View File
@@ -1,4 +1,5 @@
^title Fibers
^category types
Fibers are a key part of Wren. They form its execution model, its concurrency story and take the place of exceptions in [error handling](error-handling.html).