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
config_todo [2025/06/18 22:16] Ron Helwigconfig_todo [2025/07/05 20:18] (current) Ron Helwig
Line 1: Line 1:
-====== Site Tech Items ======+Site Tech Items
  
-===== ToDo ===== +## To Do
-Maybe install the [[https://www.dokuwiki.org/plugin:mermaid|mermaid]] plugin that allows for embedding diagrams. This might be useful for explaining Domain and Aspects.+
  
-===== Done =====+Maybe install the [Mermaid plugin](https://www.dokuwiki.org/plugin:mermaid) or the [Diagrams plugin](https://www.dokuwiki.org/plugin:diagrams) that allows for embedding diagrams.   
 +This might be useful for explaining Domains and Aspects.
  
-==== DocNavigation ==== +For embedding videos, if we need them, look at either [Video Share plugin](https://www.dokuwiki.org/plugin:vshare) or [oEmbed plugin](https://www.dokuwiki.org/plugin:oembed).
-I installed the [[https://www.dokuwiki.org/plugin:docnavigation|DocNavigation]] module so the [[rules:start|Rules Handbook]] can have Prev/Next links and an overall table of contents.+
  
-==== Hidden ==== +## Done
-I added the 'hidden' plugin so text can be collapsed and hidden.+
  
-It uses syntax similar to an HTML element "hidden" whose content is hidden by default. You can specify the text to display when it is collapsed using the "onHidden" attribute. Example: +### Site Navigation / Menus 
-<hidden onHidden="Click me to see the hidden text">This is hidden by default</hidden>+[Navigation](topnav) the list of links in the sidebar \\\  
 +[Sidebar](sidebar) the content block in the sidebar below the Navigation links \\\  
 +[Top Bar](topbar) the links at the very top of the page
  
 +### QR Codes
 +I tried making QR codes for crypto donations using the [barcodes plugin](https://www.dokuwiki.org/plugin:barcodes).
 +
 +That didn't work, probably because I wasn't using it right, but then I tried the [QRCode 2 plugin](https://www.dokuwiki.org/plugin:qrcode2) and that worked.
 +
 +### KaTex
 +I added the [KaTex plugin](https://www.dokuwiki.org/plugin:katex) that allows you to make nice math formulas using LaTex type syntax.
 +
 +### Logo
 +
 +Added a logo: {{:logo.png?200|}}
 +
 +### Theme
 +
 +I installed and configured the [Writr template](https://www.dokuwiki.org/template:writr). More complete documentation is [here](https://laswitchtech.com/en/projects/writr/documentation/index).
 +
 +### CommonMark
 +
 +I installed the [CommonMark Plugin](https://www.dokuwiki.org/plugin:commonmark) so all the content can be done in MarkDown, a common format used by many, instead of DokuWiki's proprietary syntax.
 +
 +**Note:** In order to make line breaks where it isn't treated as a paragraph break, you need to add a third slash at the end of the line, and make sure there is a space after the three slashes.
 +
 +*Example:*
 +
 +Just hit return \\\ 
 +Line 1
 +Line 2
 +
 +Add "\\ \\ \\" \\\ 
 +Line 1 \\\ 
 +Line 2
 +
 +### DocNavigation
 +
 +I installed the [DocNavigation plugin](https://www.dokuwiki.org/plugin:docnavigation) so the  
 +[Rules Handbook](rules:start) can have **Prev/Next** links and an overall **table of contents**.
 +
 +### Hidden
 +
 +I added the [Hidden plugin](https://www.dokuwiki.org/plugin:hidden) so that text can be collapsed and hidden.
 +
 +It uses syntax similar to an HTML `hidden` element whose content is hidden by default.  
 +You can specify the text to display when collapsed using the `onHidden` attribute.
 +
 +Example:
 +
 +<hidden onHidden="Click me to see the hidden text">This is hidden by default</hidden>