From f70bc9adbc750153353e6b490d35a456c8837d8c Mon Sep 17 00:00:00 2001 From: SpicyRicecaker Date: Tue, 19 Jul 2022 19:41:44 -0700 Subject: [PATCH] Make styles more consistent in the getting started section, fix typo --- getting-started/step-3-get-familiarized.md | 12 ++++++------ .../step-4-make-your-first-visual-novel.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/getting-started/step-3-get-familiarized.md b/getting-started/step-3-get-familiarized.md index 24ab18e..f3f78bb 100644 --- a/getting-started/step-3-get-familiarized.md +++ b/getting-started/step-3-get-familiarized.md @@ -35,7 +35,7 @@ Inside the main directory you'll find some pretty useful files. | `service-worker.js` | This file defines your service worker, used for asset preloading and caching | | `.htaccess` | This file provides a basic Apache configuration in case you are using that web server. | -More about what to do and how to use this specific files will come later as you read the documentation. +More about what to do and how to use these specific files will come later as you read the documentation. **JS Directory** @@ -45,10 +45,10 @@ JavaScript is the programming language you'll be using in Monogatari, it is what | File | Contains | | :--- | :--- | -| **main.js** | If you want to add more javascript, this is the file to do it! | -| **options.js** | Initial settings of your game and engine settings. | -| **script.js** | The main script of your game. \(Here's where your story, characters, images etc are declared\) | -| **storage.js** | This is where you'll declare your custom variables that you want to save in your games. | +| `main.js` | If you want to add more javascript, this is the file to do it! | +| `options.js` | Initial settings of your game and engine settings. | +| `script.js` | The main script of your game. \(Here's where your story, characters, images etc are declared\) | +| `storage.js` | This is where you'll declare your custom variables that you want to save in your games. | **Style Directory** @@ -58,5 +58,5 @@ CSS is the markup language used to style your game, from setting colors to impro | File | Contains | | :--- | :--- | -| **main.css** | Add your styling in this file. | +| `main.css` | Add your styling in this file. | diff --git a/getting-started/step-4-make-your-first-visual-novel.md b/getting-started/step-4-make-your-first-visual-novel.md index 9aabe6c..87be089 100644 --- a/getting-started/step-4-make-your-first-visual-novel.md +++ b/getting-started/step-4-make-your-first-visual-novel.md @@ -6,7 +6,7 @@ description: Learn the basic workflow for working on your game Ok, now you have some idea on [what the files you got are for](step-3-get-familiarized.md) so how can you start developing your game? -1. Try the game first, open the index.html file inside the directory you just unzipped and play the sample game through. +1. Try the game first, open the `index.html` file inside the directory you just unzipped and play the sample game through. 2. Once you've played it once, open the directory \(the one you unzipped\) with the editor you chose to start making changes. 3. Open the `script.js` file with your editor and find the `script` section, as you'll see, all the dialogs you just saw are just a simple list in there. More information can be found in [the documentation](https://monogatari.io/documentation/script/text/). 4. Change one of the dialogs, save the file and reload the game \(just like you reload a website\).