From 5413c6475e46be31c00fd71ef1672592ed3f4ecf Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 5 Dec 2024 01:38:44 +0100 Subject: docs: graduate gui.txt to "flow layout" --- scripts/gen_help_html.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts/gen_help_html.lua') diff --git a/scripts/gen_help_html.lua b/scripts/gen_help_html.lua index b8f80e94be..fe74d80e5e 100644 --- a/scripts/gen_help_html.lua +++ b/scripts/gen_help_html.lua @@ -70,6 +70,7 @@ local new_layout = { ['dev_vimpatch.txt'] = true, ['editorconfig.txt'] = true, ['faq.txt'] = true, + ['gui.txt'] = true, ['lua.txt'] = true, ['luaref.txt'] = true, ['news.txt'] = true, -- cgit From 12901447cb21c7d6628c7c7e60e1bda2e5c0b793 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 5 Dec 2024 07:18:27 -0800 Subject: docs: graduate intro.txt to "flow layout" #31462 - move credits and backers to credits.txt --- scripts/gen_help_html.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'scripts/gen_help_html.lua') diff --git a/scripts/gen_help_html.lua b/scripts/gen_help_html.lua index fe74d80e5e..53a65fd65f 100644 --- a/scripts/gen_help_html.lua +++ b/scripts/gen_help_html.lua @@ -48,7 +48,7 @@ local spell_dict = { --- specify the list of keywords to ignore (i.e. allow), or true to disable spell check completely. --- @type table local spell_ignore_files = { - ['backers.txt'] = true, + ['credits.txt'] = { 'Neovim' }, ['news.txt'] = { 'tree-sitter' }, -- in news, may refer to the upstream "tree-sitter" library ['news-0.10.txt'] = { 'tree-sitter' }, } @@ -71,6 +71,7 @@ local new_layout = { ['editorconfig.txt'] = true, ['faq.txt'] = true, ['gui.txt'] = true, + ['intro.txt'] = true, ['lua.txt'] = true, ['luaref.txt'] = true, ['news.txt'] = true, @@ -85,6 +86,7 @@ local new_layout = { -- Map of new:old pages, to redirect renamed pages. local redirects = { + ['credits'] = 'backers', ['tui'] = 'term', ['terminal'] = 'nvim_terminal_emulator', } @@ -117,7 +119,7 @@ local exclude_invalid_urls = { -- Deprecated, brain-damaged files that I don't care about. local ignore_errors = { ['pi_netrw.txt'] = true, - ['backers.txt'] = true, + ['credits.txt'] = true, } local function tofile(fname, text) -- cgit