diff --git a/chapters/chapter1_started.md b/chapters/chapter1_started.md index f48d55a..1d08602 100644 --- a/chapters/chapter1_started.md +++ b/chapters/chapter1_started.md @@ -88,20 +88,20 @@ Are you confused? Don't worry, here is an example putting all of this together. ### init.lua {% highlight lua %} - print("This file will be run at load time!") +print("This file will be run at load time!") - minetest.register_node("mymod:node",{ - description = "This is a node", - tiles = { - "mymod_node.png", - "mymod_node.png", - "mymod_node.png", - "mymod_node.png", - "mymod_node.png", - "mymod_node.png" - }, - groups = {cracky = 1} - }) +minetest.register_node("mymod:node",{ + description = "This is a node", + tiles = { + "mymod_node.png", + "mymod_node.png", + "mymod_node.png", + "mymod_node.png", + "mymod_node.png", + "mymod_node.png" + }, + groups = {cracky = 1} +}) {% endhighlight %} Our mod has a name of "mymod". It has two files: init.lua and depends.txt. diff --git a/static/style.css b/static/style.css index edc067d..4b66ba1 100644 --- a/static/style.css +++ b/static/style.css @@ -62,7 +62,7 @@ html, body { code { display: inline-block; - padding: 10px; + padding: 5px 10px 5px 10px; margin: 2px; background: #f0f0f0; border: 1px solid #e0e0e0; @@ -77,7 +77,7 @@ h1 { h2 { border-bottom: 1px solid black; - margin: 40px 0 10px 0; + margin: 30px 0 10px 0; display: block; padding: 0 0 5px 0; } @@ -85,5 +85,5 @@ h2 { h3 { font-size: 105%; font-weight: bold; - margin: 20px 0 10px 0; + margin: 30px 0 10px 0; }