summaryrefslogtreecommitdiff
path: root/doc/docs/lexerdevelopment.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2019-11-10 08:54:34 +0100
committerGeorg Brandl <georg@python.org>2019-11-10 09:46:26 +0100
commit56cb85513b028beffd9b530250d4134fcc1ec44e (patch)
treeaba36de9ae8cc95c7f20de1a7d839fb63f31f442 /doc/docs/lexerdevelopment.rst
parent38e5c33f5c2a2ed3b3ea158dcb9a10e0a27202e8 (diff)
downloadpygments-git-56cb85513b028beffd9b530250d4134fcc1ec44e.tar.gz
Update hg/bitbucket -> git/github everywhere.
Diffstat (limited to 'doc/docs/lexerdevelopment.rst')
-rw-r--r--doc/docs/lexerdevelopment.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/docs/lexerdevelopment.rst b/doc/docs/lexerdevelopment.rst
index 63bd01a3..5b6813fb 100644
--- a/doc/docs/lexerdevelopment.rst
+++ b/doc/docs/lexerdevelopment.rst
@@ -136,7 +136,7 @@ have to perform the following steps.
First, change to the current directory containing the Pygments source code. You
will need to have either an unpacked source tarball, or (preferably) a copy
-cloned from BitBucket.
+cloned from GitHub.
.. code-block:: console
@@ -611,7 +611,7 @@ possibility to influence the position.
There are not really any simple examples for lexer callbacks, but you can see
them in action e.g. in the `SMLLexer` class in `ml.py`_.
-.. _ml.py: http://bitbucket.org/birkenfeld/pygments-main/src/tip/pygments/lexers/ml.py
+.. _ml.py: https://github.com/pygments/pygments/blob/master/pygments/lexers/ml.py
The ExtendedRegexLexer class
@@ -667,7 +667,7 @@ For example, this is how the hypothetical lexer above would be written with the
This might sound confusing (and it can really be). But it is needed, and for an
example look at the Ruby lexer in `ruby.py`_.
-.. _ruby.py: https://bitbucket.org/birkenfeld/pygments-main/src/tip/pygments/lexers/ruby.py
+.. _ruby.py: https://github.com/pygments/pygments/blob/master/pygments/lexers/ruby.py
Handling Lists of Keywords