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:29] – [Advanced Config] scumsuck | wiki:documentation [2025/08/27 04:02] (current) – [Advanced Config] scumsuck | ||
---|---|---|---|
Line 46: | Line 46: | ||
As of April 30th, 2025, [[https:// | As of April 30th, 2025, [[https:// | ||
+ | |||
+ | === Emotes === | ||
+ | |||
You can use [[https:// | You can use [[https:// | ||
Line 61: | 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 73: | 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. |