From 695a52ae34fa6374fffeaa6e06b28ca4741dd93b Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 8 Dec 2014 23:59:06 +0100 Subject: [PATCH] Move the code documenting chapter up and put PHPDoc in a sub-section There are other documentation tools out there. At the least there should be the possibility to add these. --- _posts/15-01-01-Documenting.md | 5 +++++ _posts/{17-01-01-PHPDoc.md => 15-02-01-PHPDoc.md} | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 _posts/15-01-01-Documenting.md rename _posts/{17-01-01-PHPDoc.md => 15-02-01-PHPDoc.md} (97%) diff --git a/_posts/15-01-01-Documenting.md b/_posts/15-01-01-Documenting.md new file mode 100644 index 0000000..b1242aa --- /dev/null +++ b/_posts/15-01-01-Documenting.md @@ -0,0 +1,5 @@ +--- +anchor: documenting +--- + +# Documenting your Code {#documenting_title} diff --git a/_posts/17-01-01-PHPDoc.md b/_posts/15-02-01-PHPDoc.md similarity index 97% rename from _posts/17-01-01-PHPDoc.md rename to _posts/15-02-01-PHPDoc.md index 6bbce12..cfbc758 100644 --- a/_posts/17-01-01-PHPDoc.md +++ b/_posts/15-02-01-PHPDoc.md @@ -1,8 +1,10 @@ --- -anchor: phpdoc +isChild: true +title: PHPDoc +anchor: phpdoc --- -# PHPDoc {#phpdoc} +## PHPDoc {#phpdoc_title} PHPDoc is an informal standard for commenting PHP code. There are a *lot* of different [tags] available. The full list of tags and examples can be found at the [PHPDoc manual].