Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
wiki:documentation [2025/06/01 02:23] – scumsuck | wiki:documentation [2025/08/27 04:02] (current) – [Advanced Config] scumsuck | ||
---|---|---|---|
Line 2: | Line 2: | ||
I'll try to document how I've made my wiki function. | I'll try to document how I've made my wiki function. | ||
- | Since I was a young lad, I knew I wanted to write a wiki. Ya know how sometimes if you have a disorder that deficits you of attention, you often get sucked into Wikipedia rabbitholes and have 500 tabs open from one page? I feel like that method of storing and relaying information works really well for me, especially so I can add notes when I think of them and not have to wait to get home and update a page.. | + | Since I was a young lad, I knew I wanted to write a wiki. Ya know how sometimes if you have a disorder that deficits you of attention, you often get sucked into Wikipedia rabbitholes and have 500 tabs open from one page? I feel like that method of storing and relaying information works really well for me, especially so I can add notes when I think of them and not have to wait to get home and update a page. |
===== DokuWiki ===== | ===== DokuWiki ===== | ||
Line 34: | Line 34: | ||
* **[[https:// | * **[[https:// | ||
+ | =====Plugins===== | ||
+ | Here's some specific notes for [[plugins]] I'm using. | ||
==== Advanced Config ==== | ==== Advanced Config ==== | ||
Line 46: | Line 47: | ||
As of April 30th, 2025, [[https:// | As of April 30th, 2025, [[https:// | ||
- | You can use [[https:// | + | === Emotes === |
- | | + | |
+ | |||
+ | You can use [[https:// | ||
+ | |||
+ | *:pog: %% :pog: %% | ||
+ | *:hulk: %%:hulk:%% | ||
+ | *:misery: %%:misery:%% | ||
+ | |||
+ | Use the emotes by typing the name you see after the image. : | ||
+ | |||
+ | Admins may add emotes by uploading them via the [[https:// | ||
==== Avatars ==== | ==== Avatars ==== | ||
[[https:// | [[https:// | ||
Line 53: | Line 64: | ||
Avatars may be uploaded after making a comment by making a Gravatar account. | Avatars may be uploaded after making a comment by making a Gravatar account. | ||
+ | ==== Discussion ==== | ||
+ | The [[https:// | ||
+ | |||
+ | The default input fields are | ||
+ | - Real Name | ||
+ | |||
+ | - Website | ||
+ | - Comment | ||
+ | Those fields are hard-coded, with no configuration options in the server-side admin panel. | ||
+ | |||
+ | This code hides "Real Name" and makes it so screen readers don't read it. | ||
+ | |||
+ | < | ||
+ | .comment_name .block span { | ||
+ | font-size: 0; | ||
+ | visibility: hidden; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | This code replaces the text with " | ||
+ | |||
+ | < | ||
+ | .comment_name .block span::after { | ||
+ | content: ' | ||
+ | font-size: 18px; | ||
+ | visibility: visible; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Supposedly entering your e-mail allows you to get notifications for comments, but I haven' | ||
+ | |||
+ | ==== FastWiki ==== | ||
+ | * ✅ Niftiest feature was editing without reloading the page, so you can still look at the surrounding text while writing a section. | ||
+ | * ⛔ Disabled this plugin cuz it was making the table of contents show up doubled on top of my kiwiki theme. | ||
+ | * ⛔ Also adds extra padding around the pages?? | ||
==== Styling ==== | ==== Styling ==== | ||
Dokuwiki has a [[https:// | Dokuwiki has a [[https:// | ||
Line 65: | Line 111: | ||
It's kinda confusing that Wiki Style Templates are called // | It's kinda confusing that Wiki Style Templates are called // | ||
- | === wtf are these === | + | === What is a Snippet? |
Snippets allow you to insert pre-written text. | Snippets allow you to insert pre-written text. | ||
Line 89: | Line 135: | ||
- Create a page in the [[: | - Create a page in the [[: | ||
- | - Edit the page with what you need. | + | - Edit the page with what you need. |
- | + | ||
- | + | ||
- | ===== Plugins ===== | + | |
- | + | ||
- | Here is a list of my plugins generated by the [[https:// | + | |
- | + | ||
- | + | ||
- | ~~INFO: | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ~~INFO: | + | |
- | + | ||
- | + | ||
- | + | ||
- | ~~INFO: | + | |
- | ---- | + | |
- | ~~INFO: | + | |
- | + | ||
- | + | ||
- | + |