Skip to content

Commit

Permalink
Add AoA Wiki
Browse files Browse the repository at this point in the history
(cherry picked from commit b8e64d1)
  • Loading branch information
Dianliang233 committed Aug 4, 2024
1 parent 24c1fad commit be3482b
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Support for Hey Wiki for 1.20.4 has now been downgraded to Maintenance. This ver
## Changes

- Added support for JEI (#11)
- Added support for [Voidscape Wiki](https://voidscape.tamaized.com/) (#66)
- Added support for [Advent of Ascension Wiki](https://adventofascension.fandom.com/wiki/Advent_of_Ascension_Wiki) (#67)

## Fixes

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ Currently, Hey Wiki supports the following wikis:
- [Applied Energistics 2 Wiki](https://guide.appliedenergistics.org/)
- [Stardust Labs Wiki](https://stardustlabs.miraheze.org/)
- [Create Wiki](https://create.fandom.com/wiki/)
- [Voidscape Wiki](https://voidscape.tamaized.com/)
- [Advent of Ascension Wiki](https://adventofascension.fandom.com/wiki/)

If you want to add support for other wikis, you can
[file an issue](https://github.com/mc-wiki/minecraft-mod-heywiki/issues/new?labels=new+wiki%2Ctriage+needed&template=new_wiki.yml).
Expand Down
45 changes: 45 additions & 0 deletions common/src/main/resources/assets/heywiki/wiki_family/aoa3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"id": "aoa3",
"namespace": [
"aoa3"
],
"wikis": [
{
"article_url": "https://adventofascension.fandom.com/wiki/?search=%s",
"mw_api_url": "https://adventofascension.fandom.com/api.php",
"random_article": "Special:RandomPage",
"excerpt": "text_extracts",
"language": {
"wiki_language": "en",
"main": true,
"default": "en_us",
"regex": "^en_.*",
"exclude": null
}
},
{
"article_url": "https://adventofascension.fandom.com/ru/wiki/?search=%s",
"mw_api_url": "https://adventofascension.fandom.com/ru/api.php",
"random_article": "Special:RandomPage",
"excerpt": "text_extracts",
"language": {
"wiki_language": "ru",
"default": "ru_ru",
"regex": "^ru_.*",
"exclude": null
}
},
{
"article_url": "https://adventofascension.fandom.com/zh/wiki/?search=%s",
"mw_api_url": "https://adventofascension.fandom.com/zh/api.php",
"random_article": "Special:RandomPage",
"excerpt": "text_extracts",
"language": {
"wiki_language": "zh",
"default": "zh_cn",
"regex": "^zh_.*",
"exclude": null
}
}
]
}

0 comments on commit be3482b

Please sign in to comment.