X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=docs%2Fcontent%2Fshared-javascript-and-cpp-documentation%2Fdocumentation-guide.md;h=af3b3e74975d0f7ef31d468632670b929d15bd84;hp=42c4d25ae5de3c1d039e1531a39b01e090e9e4ef;hb=a48cbbde774ec935fcac52ec11bf20ad80b8ce8c;hpb=7118f6784ab97ba8eb1dd1a5792bbe472d99b3c6 diff --git a/docs/content/shared-javascript-and-cpp-documentation/documentation-guide.md b/docs/content/shared-javascript-and-cpp-documentation/documentation-guide.md index 42c4d25..af3b3e7 100644 --- a/docs/content/shared-javascript-and-cpp-documentation/documentation-guide.md +++ b/docs/content/shared-javascript-and-cpp-documentation/documentation-guide.md @@ -29,10 +29,26 @@ The space between the brackets is the alternative text. This means you will neve ~~~ ## Example -![ ](../assets/img/example-documentation/example-code.png) -![ ](example-code.png) +Please have a look at the numerous markdown files to see the header and footer requirements. +You can add tags to your headings as follows: +~~~{.md} +# MyChapter {#my-chapter} +~~~ +Which will allow you to link to this section as follows: +~~~{.md} +[Go To MyChapter](@ref my-chapter) +~~~ + +Code blocks can be enclosed within 2 blocks of 3 tildas(~). + +You can even specify your language type, for example: +~~~{.md} +~~~{.cpp} +... +~~~{.js} +~~~ #### Why use GitHub flavoured markdown? - Table support is good and language specific code blocks are easier to define ( javascript/C++).