summaryrefslogtreecommitdiffstats
path: root/contrib/python/Pygments/py3/pygments/lexers/minecraft.py
diff options
context:
space:
mode:
authorrobot-contrib <[email protected]>2023-12-09 00:19:25 +0300
committerrobot-contrib <[email protected]>2023-12-09 00:50:41 +0300
commit83b8a2f9228353759e59a093cb3c1270ea2c9d5b (patch)
treea90f4f91780c0613bea19f33ff8af8e93a335e8b /contrib/python/Pygments/py3/pygments/lexers/minecraft.py
parent460528e80f26d04487dc242b7333d45bbeb43a4d (diff)
Update contrib/python/Pygments/py3 to 2.17.2
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/lexers/minecraft.py')
-rw-r--r--contrib/python/Pygments/py3/pygments/lexers/minecraft.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/python/Pygments/py3/pygments/lexers/minecraft.py b/contrib/python/Pygments/py3/pygments/lexers/minecraft.py
index 1da0a1ba7ff..11faa000969 100644
--- a/contrib/python/Pygments/py3/pygments/lexers/minecraft.py
+++ b/contrib/python/Pygments/py3/pygments/lexers/minecraft.py
@@ -5,11 +5,11 @@
Lexers for Minecraft related languages.
SNBT. A data communication format used in Minecraft.
- wiki: https://minecraft.fandom.com/wiki/NBT_format
+ wiki: https://minecraft.wiki/w/NBT_format
MCFunction. The Function file for Minecraft Data packs and Add-ons.
official: https://learn.microsoft.com/en-us/minecraft/creator/documents/functionsintroduction
- wiki: https://minecraft.fandom.com/wiki/Function
+ wiki: https://minecraft.wiki/w/Function
MCSchema. A kind of data Schema for Minecraft Add-on Development.
official: https://learn.microsoft.com/en-us/minecraft/creator/reference/content/schemasreference/
@@ -33,7 +33,7 @@ class SNBTLexer(RegexLexer):
"""
name = "SNBT"
- url = "https://minecraft.fandom.com/wiki/NBT_format"
+ url = "https://minecraft.wiki/w/NBT_format"
aliases = ["snbt"]
filenames = ["*.snbt"]
mimetypes = ["text/snbt"]
@@ -107,7 +107,7 @@ class MCFunctionLexer(RegexLexer):
"""
name = "MCFunction"
- url = "https://minecraft.fandom.com/wiki/Commands"
+ url = "https://minecraft.wiki/w/Commands"
aliases = ["mcfunction", "mcf"]
filenames = ["*.mcfunction"]
mimetypes = ["text/mcfunction"]