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
guide [2025/08/13 15:32] – [Further Information] Valentineguide [2025/08/13 23:00] (current) – [Galleries] Valentine
Line 97: Line 97:
 ===== Using the Page Editor ===== ===== Using the Page Editor =====
 The built-in page editor is very helpful because it automatically generates the syntax you need without you needing to memorize it all. Hovering over each icon on the editor will tell you what it does. The built-in page editor is very helpful because it automatically generates the syntax you need without you needing to memorize it all. Hovering over each icon on the editor will tell you what it does.
 +
 +==== Basics ====
  
 The first 5 buttons are **bold**, //italicize//, __underline__, ''monospace/"code" text'', and <del>strikethrough</del>. The first 5 buttons are **bold**, //italicize//, __underline__, ''monospace/"code" text'', and <del>strikethrough</del>.
 +
 +==== Headlines ====
  
 Headlines or "headings" are essentially the titles of each section. DokuWiki uses five headline sizes; the higher the number, the smaller the heading. Headlines or "headings" are essentially the titles of each section. DokuWiki uses five headline sizes; the higher the number, the smaller the heading.
Line 104: Line 108:
 The "same level headline" button creates a new headline of the same size as the last headline you created. "Lower headline" creates one a size smaller, and "higher headline" creates one that is a size larger. "Select headline" lets you directly choose what size you want. The "same level headline" button creates a new headline of the same size as the last headline you created. "Lower headline" creates one a size smaller, and "higher headline" creates one that is a size larger. "Select headline" lets you directly choose what size you want.
  
 +==== Links ====
  
 The "internal link" button opens a popup for you to automatically generate a link to any other page on your wiki. The "external link" creates the basic formatting of a link for you to edit: ''%%[[http://example.com|External Link]]%%''. Just replace the first half with the link, and the second half with the text. It will look something like this: [[https://www.youtube.com/watch?v=dQw4w9WgXcQ|link text]]. The "internal link" button opens a popup for you to automatically generate a link to any other page on your wiki. The "external link" creates the basic formatting of a link for you to edit: ''%%[[http://example.com|External Link]]%%''. Just replace the first half with the link, and the second half with the text. It will look something like this: [[https://www.youtube.com/watch?v=dQw4w9WgXcQ|link text]].
 +
 +==== Lists ====
  
 "Ordered" and "unordered" lists are identical, except the former uses numbers and the latter uses bullet points. "Ordered" and "unordered" lists are identical, except the former uses numbers and the latter uses bullet points.
Line 131: Line 138:
   * asdfghj   * asdfghj
   * abcedfg</code>   * abcedfg</code>
 +
 +
 +==== Horizontal Rule ====
  
 The "horizontal rule" adds a line across the screen to separate sections. The "horizontal rule" adds a line across the screen to separate sections.
Line 141: Line 151:
  
 ===== Special Syntax ===== ===== Special Syntax =====
-There are some things that you have to do by hand instead of using the editor. These are tables and certain things I have added via plugins instead of being built into DokuWiki.+There are some things that you have to do by hand instead of using the editor. These are tables, more advanced versions of the above, and certain things I have added via plugins instead of being built into DokuWiki.
  
-===== Tables =====+==== Inter-Wiki Links ==
 + 
 +There are built in ways to link between wikis without having to type the URL out completely. ''%%[[wp>wiki|Wiki]]%%'' will create a link to Wikipedia's page on wikis. The portion before the ''>'' is the identifier. 
 + 
 +The following identifiers can be used: 
 +  * ''doku'' for DokuWiki's official documentation 
 +  * ''wp'' for Wikipedia 
 +  * ''abs'' for Absinthe Town 
 +  * ''sd'' for [[sd>|Secret Dragon]] 
 +  * ''debt'' for [[debt>|KISSKISSFALLINDEBT]] 
 +==== Tables ====
  
 **Note: I have copied this off of the [[wiki:syntax#tables|syntax guide]] with some small modifications.** Unlike the rest of this page, this is mostly not my own writing. **Note: I have copied this off of the [[wiki:syntax#tables|syntax guide]] with some small modifications.** Unlike the rest of this page, this is mostly not my own writing.
Line 261: Line 281:
 ''%%{{gallery>:namespace:file.jpg}}%%'' ''%%{{gallery>:namespace:file.jpg}}%%''
  
 +There is a way to add captions to images (to credit an artist, for example) but it is slightly more advanced. I recommend reading the [[doku>plugin:gallery|gallery extension's documentation]] to learn how to use it.
 ==== Comments ==== ==== Comments ====
  
 You can add comments to any page by adding ''%%~~DISCUSSION~~%%'' to the bottom of the page. If you want to disable comments, you can change it to ''%%~~DISCUSSION:closed~~%%'', and if you just want to disable AND hide them, use ''%%~~DISCUSSION:off~~%%''. You can add comments to any page by adding ''%%~~DISCUSSION~~%%'' to the bottom of the page. If you want to disable comments, you can change it to ''%%~~DISCUSSION:closed~~%%'', and if you just want to disable AND hide them, use ''%%~~DISCUSSION:off~~%%''.
  
-You can also give the comments a custom title by adding ''|title here'' after ''DISCUSSION'' and before the colon if applicable. It should look like this:+You can also give the comments a custom title by adding ''|title here'' after ''DISCUSSION'' and after the colon if applicable. It should look like this: 
 + 
 +<code>~~DISCUSSION:closed|Feedback~~</code>
  
-<code>~~DISCUSSION|Feedback:closed~~</code>+At the bottom of the page, there is an example of what comments will look like.
  
 You can find more detailed information on [[doku>plugin:discussion|the plugin's official docs]]. You can find more detailed information on [[doku>plugin:discussion|the plugin's official docs]].