Fix internal reference
authorMatthias Schmidt <gravatronics@live.com>
Mon, 28 Dec 2020 15:19:07 +0000 (16:19 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Mon, 28 Dec 2020 15:19:07 +0000 (16:19 +0100)
docs/getting-started_quick-start.md

index 2abd2a67ca00291df4f11a25543b2df55c2c7c13..7a6c7d6b4543aaf983e136338c9e0e84cbe95a60 100644 (file)
@@ -122,7 +122,7 @@ processing that takes place within all sort of pages, where all user-supplied da
 start reading user input at random places, including the risk to only escape the input of variable `$_GET['foo']` 4 out of 5 times.
 
 Reading and processing the data is only half the story, now we need a template to display the actual content for our page. You don't need to specify it yourself, it will be automatically guessed based on your
-namespace and class name, you can [read more about it later](#appendixTemplateGuessing).
+namespace and class name, you can [read more about it later](#template-guessing).
 
 Last but not least, you must not include the closing PHP tag `?>` at the end, it can cause PHP to break on whitespaces and is not required at all.
 
@@ -216,7 +216,7 @@ Some built-in PIPs, such as `sql` or `script`, do not qualify for this step and
 
 ## Appendix
 
-### Template Guessing {#appendixTemplateGuessing}
+### Template Guessing
 
 The class name including the namespace is used to automatically determine the path to the template and its name. The example above used the page class name `wcf\page\TestPage` that is then split into four distinct parts: