diff --git a/pages/md-style-guide.md b/pages/md-style-guide.md index 300938ed8..64b6fecac 100644 --- a/pages/md-style-guide.md +++ b/pages/md-style-guide.md @@ -6,7 +6,7 @@ Contributors to our Docs and Blog can use any of these custom markdown tags to e -### **Star** +## Star Adds a star with label along with it. In place of `"label"` text can be added which needs to be shown. @@ -14,13 +14,13 @@ Adds a star with label along with it. In place of `"label"` text can be added wh ``` -#### Example +### Example --- -### **StarInline** +## StarInline Adds an inline star with the label along with it. In place of `"label"` text can be added which needs to be shown. @@ -28,13 +28,13 @@ Adds an inline star with the label along with it. In place of `"label"` text can ``` -#### Example +### Example --- -### **Summary** +## Summary Summary and details tags both can be used together the text wrapped in the `summary` tag will be shown primarily, whereas the text shown in the `details` tag can be shown when its cliced on the summary text. @@ -42,13 +42,13 @@ Summary and details tags both can be used together the text wrapped in the `summ message to show ``` -#### Example +### Example message to show --- -### **Details** +## Details Summary and details tags both can be used together the text wrapped in the `summary` tag will be shown primarily, whereas the text shown in the `details` tag can be shown when its cliced on the summary text. @@ -56,13 +56,13 @@ Summary and details tags both can be used together the text wrapped in the `summ
message to show
``` -#### Example +### Example
message to show
--- -### **Bigquote** +## Bigquote Useful to show the text wrapped in it, in a big quotation-like text. @@ -70,13 +70,13 @@ Useful to show the text wrapped in it, in a big quotation-like text. message to show ``` -#### Example +### Example message to show --- -### **Blockquote** +## Blockquote Useful to show the text wrapped in it, in a block quotation-like text. @@ -84,13 +84,13 @@ Useful to show the text wrapped in it, in a block quotation-like text.
message to show
``` -#### Example +### Example
message to show
--- -### **Infobox** +## Infobox Infobox is useful for presenting an information, inside a box. The text written between these tags will be shown. @@ -98,13 +98,13 @@ Infobox is useful for presenting an information, inside a box. The text written message to show. ``` -#### Example +### Example message to show. --- -### **Warning** +## Warning Warning is a special type of info box in which text showing any warning can be shown. The text written between these tags will be shown. @@ -112,13 +112,13 @@ Warning is a special type of info box in which text showing any warning can be s message to show. ``` -#### Example +### Example message to show. --- -### **Tip** +## Tip Tip is a special type of info box in which text showing a tip can be shown. The text written between these tags will be shown. @@ -126,13 +126,13 @@ Tip is a special type of info box in which text showing a tip can be shown. The message to show. ``` -#### Example +### Example message to show. --- -### **Danger** +## Danger Danger is a special type of info box in which text showing any danger can be shown. The text written between these tags will be shown. @@ -140,6 +140,38 @@ Danger is a special type of info box in which text showing any danger can be sho message to show. ``` -#### Example +### Example message to show. + +--- + +## Table of Contents + +Table of Contents provides a structured overview of the main sections or chapters within the current page/document. + +```markdown + +``` + +--- + +## Tabs Group + +This can be used to group multiple tabs under a common name and differentiated by specific labels and content. + +```markdown +[ tabs-start "label" ] +[ tab "name" ] +message to show +[ tabs-end ] +``` + +### Example + +[tabs-start "label"] +[tab "name"] +message to show +[tab "name"] +message to show +[tabs-end]