Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
playground:playground [2022/11/29 10:19] – external edit (Unknown date) 127.0.0.1playground:playground [2024/01/30 09:47] (current) – [PlayGround] nates
Line 1: Line 1:
 ====== PlayGround ====== ====== PlayGround ======
 +
 +Feel free to play around with this here. I've included some basic examples to help get you started.
 +
 +Tap the EDIT button to see the formatting..
 + 
 +===== Bold, Italics, Underlines =====
 +Using two of /, *, or _ on both sides of a bit of text will do the following:
 +  * **BOLD** -> ''%%**like this**%%''.
 +  * //ITALICS// -> ''%%//like this//%%''.
 +  * __Underlined__ -> ''%%__like this__%%''.
 +
 +===== Links =====
 +  * [[:sidebar|Sidebar]]
 +  * Side note: DokuWiki is configured to grab the "Title" from the first HEADER on the target page.
 +
 +===== Large Wraps =====
 +
 +<WRAP center round info 90%> **Informational Wrap** </WRAP>
 +
 +<WRAP center round help 90%> **Help Wrap** </WRAP>
 +
 +<WRAP center round important 90%> **Important Wrap** </WRAP>
 +
 +===== Inline Wraps =====
 +  - <wrap info 90%> wrap INFO text </wrap>
 +  - <wrap help 90%> wrap HELP text </wrap>
 +  - <wrap important 90%> wrap IMPORTANT text </wrap>
 +
 +===== Lists =====
 +Dash list:
 +  - Item (a)
 +  - Item (b)
 +    - Item (b.1)
 +    - Item (b.2)
 +
 +Star list:
 +  * Item (a)
 +  * Item (b)
 +    * Item (b.a)
 +    * Item (b.b)
 +    * Item (b.c)
 +  * Item C.
 +
 +===== Headers =====
 +====== 6x (='s) Top of Page ======
 +===== 5x (='s) Major Divisions =====
 +==== 4x (='s) Minor Divisions ====
 +the 4x is the smallest header that shows up in the top right "index" of a page.
 +=== 3x (='s) Sections ===
 +== 2x (='s) Sub-sections ==
 +
 +<code>
 +====== 6x (='s) Top of Page ======
 +===== 5x (='s) Major Divisions =====
 +==== 4x (='s) Minor Divisions ====
 +=== 3x (='s) Sections ===
 +== 2x (='s) Sub-sections ==
 +</code>
 +
 +===== SKIP HIGHLIGHT =====
 +Add two ' symbols before and after.
 +''Like this''
 +===== Hidden / Expandable Things =====
 +https://www.dokuwiki.org/plugin:folded
 +
 +++++ Title to show |
 +And this is the text that is revealed!
 +++++
 +<code>
 +++++ Title to show |
 +and this is the text that is revealed!
 +++++
 +</code>
 +
 +==== Nested Folds Test ====
 +++++ Outer Fold |
 +The trick is to wrap the inner fold:
 +<WRAP>
 +++++ Inner Fold |
 +This is the content of the inner fold.
 +++++
 +</WRAP>
 +++++
 +
 +<code>
 +++++ Outer Fold |
 +The trick is to wrap the inner fold:
 +<WRAP>
 +++++ Inner Fold |
 +This is the content of the inner fold.
 +++++
 +</WRAP>
 +++++
 +</code>
 +====== Youtube Embeds ======
 +
 +{{youtube>YJoscTeO_QI}}
 +<code>
 +{{youtube>YJoscTeO_QI}}
 +</code>
 +
 +===== HTML Embeds =====
 +<HTML>
 +
 +<iframe src="https://scribehow.com/embed/Understanding_the_Homescreen_On_The_A-1_Plumbing_App__LYAbA-ZGR3OGUa2LQ_eSPg?as=scrollable&skipIntro=true" width="100%" height="640" allowfullscreen frameborder="0"></iframe>
 +
 +</HTML>
 +
 +<code>
 +<HTML>
 +<iframe src="https://scribehow.com/embed/Understanding_the_Homescreen_On_The_A-1_Plumbing_App__LYAbA-ZGR3OGUa2LQ_eSPg?as=scrollable&skipIntro=true" width="100%" height="640" allowfullscreen frameborder="0"></iframe>
 +</HTML>
 +</code>