User Tools

Site Tools


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
Next revisionBoth sides next revision
cheatsheet [2022-05-17 22:16] Neatnikcheatsheet [2022-06-26 19:33] RideWithMeTomorrow
Line 7: Line 7:
 ===== Wiki Syntax ===== ===== Wiki Syntax =====
  
-The core wiki syntax is documented on the [[https://www.dokuwiki.org/wiki:syntax|DokuWiki syntax page]].+The core wiki syntax is documented on the [[https://www.dokuwiki.org/wiki:syntax|DokuWiki syntax page]]. You can use [[https://pandoc.org/try/?text=&from=markdown&to=dokuwiki&standalone=0|this helpful tool to convert from Markdown to DokuWiki syntax]]. 
 + 
 +===== Create a New Page ===== 
 + 
 +<html> 
 +Page title: <input type="text" name="new_page" id="new_page"> <button onclick="window.location = document.getElementById('new_page').value + '?do=edit';">Create</button> 
 +</html> 
 + 
 +===== Tagging ===== 
 + 
 +To tag an article, add this to the bottom: 
 + 
 +<code>{{tag>tag_name}}</code> 
 + 
 +You can add multiple tags by separating them with a space: 
 + 
 +<code>{{tag>tag_one tag_two tag_three}}</code> 
 + 
 +Tag names cannot contain spaces. Use an underscore, as shown above, to represent a space in a tag name. 
 + 
 +You can view a list of all tags in use on the [[Tags]] page. 
  
 ===== Table of Contents ===== ===== Table of Contents =====
Line 23: Line 44:
   * //2// refers to the level at which the TOC should begin including headings (so, the second level)   * //2// refers to the level at which the TOC should begin including headings (so, the second level)
  
-===== Stubs =====+===== Blurbs ===== 
 + 
 +You can add various blurbs to pages, which is useful for flagging them or alerting people to something relevant about them. 
 + 
 +==== Featured Article ==== 
 + 
 +Marking an article as Featured will put it in the randomized display of featured articles on the wiki’s landing page. 
 + 
 +<code> 
 +{{page>:blurbs#Featured}} 
 +</code> 
 + 
 +==== Stub ====
  
 If you’re working on an article and you know there’s more to add later, or you just want to make a quick placeholder article, you should mark it as a “stub”. You can do this by adding this at the end: If you’re working on an article and you know there’s more to add later, or you just want to make a quick placeholder article, you should mark it as a “stub”. You can do this by adding this at the end:
Line 29: Line 62:
 <code> <code>
 {{page>:blurbs#Stub}} {{page>:blurbs#Stub}}
 +</code>
 +
 +==== Speculation/Theory ====
 +
 +Theory pages or pages with heavy speculation should be marked as such:
 +
 +<code>
 +{{page>:blurbs#Speculation}}
 </code> </code>
  
Line 114: Line 155:
 </code> </code>
  
 +{{tag>Meta}}
cheatsheet.txt · Last modified: 2022-06-27 03:13 by Neatnik