## What belongs here? This wiki is the source of truth on… - Rules and mechanics for the **Burgers in the Dark** system. - General worldbuilding and Devilverse lore. This wiki may include, but is not the source of truth on… - Character and relationship details. Those live here: [Devil's Diner Faction/NPC Relationship Charts and Other Sheets | Google Sheets](https://docs.google.com/spreadsheets/d/1PURD4g_tRwXpcARY8p3HCUPTxcXl1QfdVvVgmTy1gnA/edit) - Session summaries. Those live in the **\#diner-info** Discord channel. - Logs. Those live here: [DEVIL’S DINER LOGS | Google Docs](https://docs.google.com/document/d/1BLMcyMxgb-jp_CO1i44yALllLn1mmrmora_Q3RaWbyk/edit) - Transcripts. Those live here: [Session Transcripts | Google Drive](https://drive.google.com/drive/folders/16TWK1ommzlBwEx_GXmd9J5sHXpRJg2J8?usp=drive_link) This wiki will NOT attempt to keep up-to-date on… - PC stats, Stress, Conditions, Experience, or any other live measures of game state. Those live here: [Devil's Diner - New Character Sheet - Burgers in the Dark](https://docs.google.com/spreadsheets/d/12OCJznJokXRMLyCddmuFZRkqFCxQExjSBu9ZuRku1Mc/edit?gid=440477956#gid=440477956) - Session notes. Those live here: [Devil's Diner Session Notes | Google Docs](https://docs.google.com/document/d/1yzszXnlOT5ZbxP_3MXiwffGfXne6LwrSOtBE1BYo92A/edit) - Session recordings. Those live here: [Devil’s Diner - Audio Recordings | Google Drive](https://drive.google.com/drive/folders/1VMU9DmqxvUbJSjzeyiNjzNQEM9wAPedN?usp=drive_link) - WIP logs and transcripts. - Art, fic, AUs, alignment charts, and any other fandom miscellany. Those live in the **\#eggys-fridge** and **\#diner-discussion** Discord channels and are archived here: [Diner fandom | Google Drive](https://drive.google.com/drive/folders/1EBPOp3qB-QrnjLs2GjsAZhsBjfjuks9A?usp=drive_link) ## How to edit This wiki is hosted on **Obsidian Publish** and written primarily in **markdown** (`.md` files) with some custom HTML. Due to the way Obsidian Publish works, only I (Felix) can make direct edits to this wiki, so we will need to use Google Drive to collaborate on edits. Unfortunately, Google Drive does not support editing for `.md` files, but we can work around this! If you write a Google Doc in **completely plain text** (DO NOT add styling!) using markdown notation, I can easily copy the document contents over into a new or existing `.md` file on my end. I’ve made a Drive folder for these docs: [Devilverse Wiki | Google Drive](https://drive.google.com/drive/folders/1LqCm_9TTY0rDShzG_wDAWzZ_1M-ERPjF?usp=drive_link) Let me know when you’ve added a doc to this folder (or edited an existing doc) and I can update the site accordingly! ### Editing PC pages A doc containing the code for each PC page can be found here: [Devilverse Wiki/Characters/PCs | Google Docs](https://docs.google.com/document/d/1JplyIq_Pjzr3pehoKldwqBljOCP8BmMlST29os7UZSQ/edit?usp=sharing) ### Editing other existing pages For small or infrequent edits, just let me know what you want changed and I can make the change on my end. If you want ongoing edit access to a page, let me know and I’ll add a doc for that page to the Drive folder. ### Adding pages If you want to add a new page: - Create a new doc in the Drive folder and title it exactly the way you want your page to be titled. DO NOT include any of these 3 characters in your page title: `/\:` - Write the markdown for your new page in that doc. - Place the doc in the Drive subfolder corresponding to its intended location on this wiki (or make new folders as needed). For example, a new NPC page should be placed in the `Devilverse Wiki/Characters/NPCs` folder. Alternatively, if you want to draft multiple pages in one doc, use **one document tab per page** and title each tab with your desired page title — but please only do this if all pages in the doc are meant to be located in the same folder. ## Markdown 101 ### Basic formatting This is the notation for basic text formatting in markdown. Additional styles are possible (highlighting, underline, etc.), but for simplicity’s sake we’ll mostly be using these. Some notes: - To ensure spacing appears consistent across desktop and mobile, please separate all elements (paragraphs, headings, etc.) by a double line break (as shown in the templates below). - Please use a consistent structure of nested headings (ie. `## Heading 2` for major page sections, `### Heading 3` for subsections under each major section, and so on). Note that headings will automatically appear in the table of contents on the right-hand side of each page. - DO NOT use `# Heading 1` — that’s reserved for the page title and will be rendered automatically based on file name. - Do not bold, italicize, or otherwise add any additional styling to headings. - Write headings in Title Case. If at any point we decide we prefer some other style (eg. UPPERCASE), I can change that programmatically on the CSS end. (You may also see me using Sentence case for headings on some pages; I eventually want all headings to be consistent, but I’m still figuring out what looks best in the most cases.) - I won’t necessarily stop you, but I’d prefer to minimize use of heading levels 5 and 6. Once you get to that level of nesting, consider using a list for the lowest level items, restructuring some information into a table, or moving the entire major section onto its own page. - For consistency’s sake, try to use bolded text to improve readability/structure and italicized text (sparingly) for emphasis and asides. Some fun/creative formatting can be fine, but consistency and readability are highest priority. - Please try to avoid trailing whitespace (spaces at the end of a line). It can make the formatting look strange. - I will write up a guide for adding images and custom HTML at some point, but for now, if you’d like to include an image, just note in plain text where you’d like the image to go and I'll add it in on my end. ``` ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 Normal text *Italicized text* **Bolded text** - Unordered list 1 - Subitem a - Subitem b - Unordered list 2 - Unordered list 3 1. Ordered list 1 - Subitem a - Subitem b 2. Ordered list 2 3. Ordered list 3 [link text](link url) ``` ### Tables If you’d like to add markdown-style tables, this is what that looks like. Tables in this format will have one row of headings across the top and all other cells will be data cells. If you want a table with headings oriented down a column instead, or with cells spanning multiple rows/columns, you’ll need HTML for that. *NOTE: The formatting on these is a little iffy, so if you need to add a table, it’s probably better to just add one normal-style in Google Docs for now. I can sort out the conversion on my end.* ``` | Column heading 1 | Column heading 2 | | ---------------- | ---------------- | | Data cell 1-1 | Data cell 2-1 | | Data cell 1-2 | Data cell 2-2 | ``` ## Page templates Copy the code below into an empty doc to start a new page. ### Generic page ``` ## Major Section 1 ### Subsection 1.1 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. ### Subsection 1.2 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. ## Major Section 2 ### Subsection 2.1 (etc.) ``` ### Character page *NOTE: I may still make some changes to the standard structure of the character pages, so don’t go too crazy making these yet. Feel free to draft text content, though.* Character pages are a bit more complicated and fragile. Please just edit content in-place and don’t mess with the HTML structure of these pages unless you know what you’re doing. Some notes: - The HTML block at the start is the floating card. Feel free to add rows or delete any rows that don’t apply. - Everything between the `<tr></tr>` (table row) tags is a row. - Everything between the `<th></th>` (table header) tags is a header cell. - Everything between the `<td></td>` (table data) tags is a regular cell. - Make sure there is at least 1 line of whitespace underneath the floating card HTML block an between each Relationship block. This will ensure everything renders correctly. ``` <div class="float-right"> <img class="character-table-image" src="IMAGE.jpg" alt="ALT TEXT"> <table class="character-table"> <tr><th colspan="2" class="character-table-quote"> “QUOTE” </th></tr> <tr><th>Player</th><td>PLAYER</td></tr> <tr><th>Position</th><td>POSITION</td></tr> <tr><th>Species</th><td>SPECIES</td></tr> <tr><th>Pronouns</th><td>PRONOUNS</td></tr> <tr><th>Height</th><td>HEIGHT</td></tr> <tr><th>Age</th><td>AGE</td></tr> <tr><th>Birthdate</th><td>MM/DD/YYYY</td></tr> <tr><th>Family</th><td>FAMILY</td></tr> <tr><th>A.K.A.</th><td>OTHER NAMES</td></tr> </table> </div> CHARACTER INTRO/OVERVIEW GOES HERE ## History BACKSTORY DETAILS GO HERE ## Relationships ### Name <img class="relationship-image" src="chibi_NAME.jpg" alt="Chibi NAME"> RELATIONSHIP DESCRIPTION GOES HERE ### Name <img class="relationship-image" src="chibi_NAME.jpg" alt="Chibi NAME"> RELATIONSHIP DESCRIPTION CHARACTER INTRO/OVERVIEW GOES HERE ## History BACKSTORY DETAILS GO HERE ## Additional Headings WHATEVER CONTENT YOU LIKE ```