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

Add `^category` front matter to all language, types, and reference doc pages for site navigation restructuring. Replace `:::wren` and `:::java` code block annotations with `:::dart` across multiple files. Create new stub pages for core-libraries, embedding-api, and contributing under the reference category. Remove the old embedding and getting-involved stub pages.
This commit is contained in:
Bob Nystrom
2014-04-15 04:23:46 +00:00
parent 10b19d969b
commit 6ed15da597
24 changed files with 341 additions and 175 deletions
+3
View File
@@ -1,4 +1,5 @@
^title Lists
^category types
A list is a compound object that holds a collection of elements identified by integer index. You can create a list by placing a sequence of comma-separated expressions inside square brackets:
@@ -61,12 +62,14 @@ It's valid to "insert" after the last element in the list, but only *right* afte
The opposite of `insert` is `removeAt`. It removes a single element from a given position in the list. All following items are shifted up to fill in the gap:
:::dart
var letters = ["a", "b", "c"]
letters.removeAt(1)
IO.print(letters) // ["a", "c"]
If you want to remove everything from the list, you can clear it:
:::dart
hirsute.clear
IO.print(hirsute) // []