From 5a5721359598c86063932a4821fc100dbbd0172f Mon Sep 17 00:00:00 2001 From: champignoom Date: Sun, 12 Jan 2025 07:43:36 +0800 Subject: [PATCH] docs: help page more indent --- doc/wiki/Cookbook.norg | 2 +- doc/wiki/Tangling.norg | 10 +++++----- doc/wiki/Tutorial.norg | 20 ++++++++++---------- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/doc/wiki/Cookbook.norg b/doc/wiki/Cookbook.norg index 548c0301d..2428693f5 100644 --- a/doc/wiki/Cookbook.norg +++ b/doc/wiki/Cookbook.norg @@ -48,7 +48,7 @@ ~ In your Neorg configuration: @code lua load = { - ["core.integrations.image"] = {}, + ["core.integrations.image"] = {}, ["core.latex.renderer"] = {}, } @end diff --git a/doc/wiki/Tangling.norg b/doc/wiki/Tangling.norg index c1c680dee..7dd703b9a 100644 --- a/doc/wiki/Tangling.norg +++ b/doc/wiki/Tangling.norg @@ -82,7 +82,7 @@ lua: ./output.lua haskell: my-haskell-file } - delimiter: heading + delimiter: heading scope: all } @end @@ -157,10 +157,10 @@ |example @document.meta tangle: { - languages: { - lua: ./output.lua - } - scope: main + languages: { + lua: ./output.lua + } + scope: main } @end diff --git a/doc/wiki/Tutorial.norg b/doc/wiki/Tutorial.norg index 4fc49a34b..be12222ad 100644 --- a/doc/wiki/Tutorial.norg +++ b/doc/wiki/Tutorial.norg @@ -215,16 +215,16 @@ Below I'll create an ordered list of stuff: @code lua require("neorg").setup({ - load = { - ["core.defaults"] = {}, - ["core.dirman"] = { - config = { - workspaces = { - notes = "~/notes", - }, - }, - }, - }, + load = { + ["core.defaults"] = {}, + ["core.dirman"] = { + config = { + workspaces = { + notes = "~/notes", + }, + }, + }, + }, }) @end