+
+
+
+
\ No newline at end of file
diff --git a/docs/utils/CROWDIN.md b/docs/utils/CROWDIN.md
index d61e679..ac37362 100644
--- a/docs/utils/CROWDIN.md
+++ b/docs/utils/CROWDIN.md
@@ -1,3 +1,7 @@
+---
+title: Automating CrowdIn Translations
+---
+
As stated in [issue #23](https://jfenn.me/redirects/?t=github&d=Attribouter/issues/23), no kind of "proper" support for CrowdIn will be added to Attribouter for a while because [their API does not look very fun](https://support.crowdin.com/api/api-integration-setup/). However, [@deletescape](https://github.com/deletescape) has written [a python script](https://github.com/deletescape/dscripts/blob/8b261226deda604df7405708e6e7ae67b6d2e480/gettranslators.py) (below, slightly modified to update the syntax) that uses their API to fetch translators and output them to a file in the correct syntax, which you may find useful for handling large amounts of translators.
```python
diff --git a/docs/wedges/APP.md b/docs/wedges/APP.md
index 49e57e6..6bcdcb3 100644
--- a/docs/wedges/APP.md
+++ b/docs/wedges/APP.md
@@ -1,3 +1,7 @@
+---
+title: AppWedge
+---
+
The `AppWedge` displays the app icon, name, version, and links to the project sites in a centered layout. By default, the icon and app name are fetched from your app's `AndroidManifest.xml`, and all other information is fetched from the GitHub API if the `repo` attribute has been specified.
## Example
diff --git a/docs/wedges/CONTRIBUTOR.md b/docs/wedges/CONTRIBUTOR.md
index 2888ed6..7c5f251 100644
--- a/docs/wedges/CONTRIBUTOR.md
+++ b/docs/wedges/CONTRIBUTOR.md
@@ -1,3 +1,7 @@
+---
+title: ContributorWedge
+---
+
The `ContributorWedge` displays a set of information about a person in a small layout. If the `bio` attribute is defined, a dialog will appear upon interaction displaying more information, such as... um... their biography... and links. If it is not defined, it will open the highest priority [`LinkWedge`](./LINK.md) child instead.
## Example
diff --git a/docs/wedges/CONTRIBUTORS.md b/docs/wedges/CONTRIBUTORS.md
index d131d1f..751df03 100644
--- a/docs/wedges/CONTRIBUTORS.md
+++ b/docs/wedges/CONTRIBUTORS.md
@@ -1,3 +1,7 @@
+---
+title: ContributorsWedge
+---
+
A `ContributorsWedge` displays a list of child [`ContributorWedge`](./CONTRIBUTOR.md)s under a title, sorted by their `position` attributes. If the `repo` attribute is specified, this list will be merged with contributors from GitHub. If the `showDefaults` attribute is unspecified ot `true`, it will also merge it with contributors to this repository.
If a user with the login "TheAndroidMaster" is both in GitHub and the configuration file, its attributes will be merged so that any attributes beginning with a "^" character will override the information from GitHub, and any attributes not beginning with a "^" character will be used while the GitHub information is loading, or if the information from GitHub is not present or unavailable. See ["Overriding Resources and Providing Translations"](../RESOURCES.md) for more information on how merges work.
diff --git a/docs/wedges/HEADER.md b/docs/wedges/HEADER.md
deleted file mode 100644
index e69de29..0000000
diff --git a/docs/wedges/LICENSE.md b/docs/wedges/LICENSE.md
index 1bbd1af..92cf8f3 100644
--- a/docs/wedges/LICENSE.md
+++ b/docs/wedges/LICENSE.md
@@ -1,3 +1,7 @@
+---
+title: LicenseWedge
+---
+
The `LicenseWedge` is intended to display information about libraries used by your project. Simply displaying this wedge does not guarantee that you are following all of the conditions of the project's license, but it is a good start.
If only the `repo` attribute is specified, this wedge can fetch all of its necessary information from the GitHub API, however it is a good idea to include all of the information in the configuration file as well, so that it is still displayed if the user is offline or there is an issue with the GitHub API.
@@ -30,7 +34,7 @@ If only the `repo` attribute is specified, this wedge can fetch all of its neces
## Auto-generated Links
-The links that are automatically created by this wedge are as follows. See [`LinkWedge`](./LINKS.md) for more information.
+The links that are automatically created by this wedge are as follows. See [`LinkWedge`](./LINK.md) for more information.
|ID|Description|Required Attributes|
|-----|-----|-----|
diff --git a/docs/wedges/LICENSES.md b/docs/wedges/LICENSES.md
index 455d5cf..56773c4 100644
--- a/docs/wedges/LICENSES.md
+++ b/docs/wedges/LICENSES.md
@@ -1,3 +1,7 @@
+---
+title: LicensesWedge
+---
+
The `LicensesWedge` displays a list of child [`LicenseWedge`](./LICENSE.md)s with a title at the top. If the `showDefaults` attribute is undefined or `true`, this list will be merged with the licenses used by Attribouter. See ["Overriding Resources and Providing Translations"](../RESOURCES.md) for more information on how merges work.
## Example
diff --git a/docs/wedges/LINK.md b/docs/wedges/LINK.md
index 0d33bfc..03753f0 100644
--- a/docs/wedges/LINK.md
+++ b/docs/wedges/LINK.md
@@ -1,3 +1,7 @@
+---
+title: LinkWedge
+---
+
Link tags can exist as children of the [App](./APP.md), [Contributor](./CONTRIBUTOR.md), and [License](./LICENSE.md) wedges. They can also be added as children of the root tag, though that is not their intended use. A few links are generated automatically by these wedges, such as links to the github profile of contributors for which the `login` attribute has been specified, and so on. These auto-generated links are specified in the wedges' individual documentation pages.
If you wish to remove an auto-generated link, you can simply define a `LinkWedge` with the same `id` and the `hidden` attribute. However, if you want to modify another value of an auto-generated link, such as the title or icon, you may need to specify that you want to override consecutive merges as well so that it is not overwritten if the wedge receives more information from the GitHub API. See ["Overriding Resources and Providing Translations"](../RESOURCES.md) for more information on overriding merges.
diff --git a/docs/wedges/TEXT.md b/docs/wedges/TEXT.md
index e23c9d3..7c6c97c 100644
--- a/docs/wedges/TEXT.md
+++ b/docs/wedges/TEXT.md
@@ -1,3 +1,7 @@
+---
+title: TextWedge
+---
+
A `TextWedge` is a block of text. Fairly simple.
## Example
diff --git a/docs/wedges/TRANSLATOR.md b/docs/wedges/TRANSLATOR.md
index 7c9d2e7..c667420 100644
--- a/docs/wedges/TRANSLATOR.md
+++ b/docs/wedges/TRANSLATOR.md
@@ -1,3 +1,7 @@
+---
+title: TranslatorWedge
+---
+
The `TranslatorWedge` displays information about a translator in an only slightly more concise layout than the [`ContributorWedge`](./CONTRIBUTOR.md).
## Example
diff --git a/docs/wedges/TRANSLATORS.md b/docs/wedges/TRANSLATORS.md
index 55a9b0f..47e43b5 100644
--- a/docs/wedges/TRANSLATORS.md
+++ b/docs/wedges/TRANSLATORS.md
@@ -1,3 +1,7 @@
+---
+title: TranslatorsWedge
+---
+
The `TranslatorsWedge` displays a list of [`TranslatorWedge`](./TRANSLATOR.md)s in sections, sorted by locale. If a translator has translated multiple locales, they will appear under every locale that they have translated.
## Example