diff --git a/NEWS b/NEWS
index 03bc3c6..f6afcfb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+Version 5.0.6 (2018-06-20)
+------------------------------------------------------------------------
+
+- Fix: Do not link inside `` tags.
+
+* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+
+
Version 5.0.5 (2017-10-17)
------------------------------------------------------------------------
diff --git a/README.md b/README.md
index ca49bcb..966a24a 100644
--- a/README.md
+++ b/README.md
@@ -451,6 +451,7 @@ master branch if you want to install the extension for your own Wiki.
- Brent Laabs (@labster), code review and bug fixes
- @tetsuya-zama, bug fix
- @yoshida3669, namespace-related bug fixes
+- Caleb Mingle (@dentafrice), bug fix
### Testing
@@ -521,7 +522,7 @@ fail and tell you about database problems.
License
-------
-Copyright 2012-2017 Daniel Kraus (@bovender)
+Copyright 2012-2018 Daniel Kraus (@bovender)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/extension.json b/extension.json
index ada0bdc..0630b6a 100644
--- a/extension.json
+++ b/extension.json
@@ -5,11 +5,12 @@
"Ulrich Strauss (c0nnex)",
"Brent Laabs (labster)",
"tetsuya-zama",
- "yoshida"
+ "yoshida",
+ "Caleb Mingle (dentafrice)"
],
"type": "parserhook",
"url": "https://www.mediawiki.org/wiki/Extension:LinkTitles",
- "version": "5.0.5",
+ "version": "5.0.6",
"license-name": "GPL-2.0+",
"descriptionmsg": "linktitles-desc",
"requires": {
diff --git a/includes/Config.php b/includes/Config.php
index f5c77d0..a6a9cca 100644
--- a/includes/Config.php
+++ b/includes/Config.php
@@ -2,7 +2,7 @@
/**
* The LinkTitles\Config class holds configuration for the LinkTitles extension.
*
- * Copyright 2012-2017 Daniel Kraus ('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
diff --git a/includes/Extension.php b/includes/Extension.php
index dbe3d7e..0997c7d 100644
--- a/includes/Extension.php
+++ b/includes/Extension.php
@@ -2,7 +2,7 @@
/**
* The LinkTitles\Extension class provides event handlers and entry points for the extension.
*
- * Copyright 2012-2017 Daniel Kraus ('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/includes/Linker.php b/includes/Linker.php
index 62b07af..65fbb46 100644
--- a/includes/Linker.php
+++ b/includes/Linker.php
@@ -2,7 +2,7 @@
/**
* The LinkTitles\Linker class does the heavy linking for the extension.
*
- * Copyright 2012-2017 Daniel Kraus ('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/includes/Magic.php b/includes/Magic.php
index b4ac715..b8bdfbc 100644
--- a/includes/Magic.php
+++ b/includes/Magic.php
@@ -1,6 +1,6 @@
('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/includes/Source.php b/includes/Source.php
index e44962b..b751004 100644
--- a/includes/Source.php
+++ b/includes/Source.php
@@ -2,7 +2,7 @@
/**
* The LinkTitles\Source represents a Wiki page to which links may be added.
*
- * Copyright 2012-2017 Daniel Kraus ('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/includes/Special.php b/includes/Special.php
index 27ca411..453e262 100644
--- a/includes/Special.php
+++ b/includes/Special.php
@@ -2,7 +2,7 @@
/**
* Provides a special page for the LinkTitles extension.
*
- * Copyright 2012-2017 Daniel Kraus ('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/includes/Splitter.php b/includes/Splitter.php
index fd148b5..74d7cb2 100644
--- a/includes/Splitter.php
+++ b/includes/Splitter.php
@@ -2,7 +2,7 @@
/**
* The Splitter class caches a regular expression that delimits text to be parsed.
*
- * Copyright 2012-2017 Daniel Kraus ('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/includes/Target.php b/includes/Target.php
index 451c6e1..b152f34 100644
--- a/includes/Target.php
+++ b/includes/Target.php
@@ -2,7 +2,7 @@
/**
* The LinkTitles\Target represents a Wiki page that is a potential link target.
*
- * Copyright 2012-2017 Daniel Kraus ('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/includes/Targets.php b/includes/Targets.php
index bcb4d43..72f37fc 100644
--- a/includes/Targets.php
+++ b/includes/Targets.php
@@ -2,7 +2,7 @@
/**
* The LinkTitles\Targets class.
*
- * Copyright 2012-2017 Daniel Kraus ('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/linktitles-cli.php b/linktitles-cli.php
index fdb7f02..a4d175f 100755
--- a/linktitles-cli.php
+++ b/linktitles-cli.php
@@ -2,7 +2,7 @@
/**
* LinkTitles command line interface (CLI)/maintenance script
*
- * Copyright 2012-2017 Daniel Kraus @bovender
+ * Copyright 2012-2018 Daniel Kraus @bovender
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/tests/phpunit/ConfigTest.php b/tests/phpunit/ConfigTest.php
index 9a2877f..a21b38e 100644
--- a/tests/phpunit/ConfigTest.php
+++ b/tests/phpunit/ConfigTest.php
@@ -1,6 +1,6 @@
('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/tests/phpunit/ExtensionTest.php b/tests/phpunit/ExtensionTest.php
index b3dd7ec..e6f8369 100644
--- a/tests/phpunit/ExtensionTest.php
+++ b/tests/phpunit/ExtensionTest.php
@@ -1,6 +1,6 @@
('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/tests/phpunit/LinkerTest.php b/tests/phpunit/LinkerTest.php
index c6a5eba..e43f029 100644
--- a/tests/phpunit/LinkerTest.php
+++ b/tests/phpunit/LinkerTest.php
@@ -2,7 +2,7 @@
/**
* Unit tests for the Linker class, i.e. the core functionality
*
- * Copyright 2012-2017 Daniel Kraus ('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/tests/phpunit/SplitterTest.php b/tests/phpunit/SplitterTest.php
index 21716f6..28f3348 100644
--- a/tests/phpunit/SplitterTest.php
+++ b/tests/phpunit/SplitterTest.php
@@ -1,6 +1,6 @@
('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/tests/phpunit/TargetTest.php b/tests/phpunit/TargetTest.php
index 2c08f11..f1d0c79 100644
--- a/tests/phpunit/TargetTest.php
+++ b/tests/phpunit/TargetTest.php
@@ -1,6 +1,6 @@
('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/tests/phpunit/TargetsTest.php b/tests/phpunit/TargetsTest.php
index a42397a..2a7f8fc 100644
--- a/tests/phpunit/TargetsTest.php
+++ b/tests/phpunit/TargetsTest.php
@@ -1,6 +1,6 @@
('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/tests/phpunit/TestCase.php b/tests/phpunit/TestCase.php
index faae9bd..5ed7dd6 100644
--- a/tests/phpunit/TestCase.php
+++ b/tests/phpunit/TestCase.php
@@ -1,6 +1,6 @@
('bovender')
+ * Copyright 2012-2018 Daniel Kraus ('bovender')
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by