diff options
author | Saien Govender <35043617+saitheninja@users.noreply.github.com> | 2024-05-23 15:20:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 06:20:29 -0700 |
commit | c614969570ac13cfc1ff6642fcaf56ebce6d40be (patch) | |
tree | ddd1d0a99ac1500c097d72ee188aefd0d35fa461 /scripts/gen_help_html.lua | |
parent | af200c10cf9d117a14ebf9f2e9c666721a1090d6 (diff) | |
download | rneovim-c614969570ac13cfc1ff6642fcaf56ebce6d40be.tar.gz rneovim-c614969570ac13cfc1ff6642fcaf56ebce6d40be.tar.bz2 rneovim-c614969570ac13cfc1ff6642fcaf56ebce6d40be.zip |
build(docs): update CSS #28896
Problem:
Not using minified version of bootstrap.
Don't need to load normalize with new version of bootstrap.
See https://github.com/neovim/neovim.github.io/pull/350
Solution:
Update link to bootstrap file.
Remove link to normalize.
Diffstat (limited to 'scripts/gen_help_html.lua')
-rw-r--r-- | scripts/gen_help_html.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/gen_help_html.lua b/scripts/gen_help_html.lua index 2a8f8308ac..b61f01f124 100644 --- a/scripts/gen_help_html.lua +++ b/scripts/gen_help_html.lua @@ -836,8 +836,7 @@ local function gen_one(fname, to_fname, old, commit, parser_path) <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@docsearch/css@3" /> <link rel="preconnect" href="https://X185E15FPG-dsn.algolia.net" crossorigin /> - <link href="/css/normalize.min.css" rel="stylesheet"> - <link href="/css/bootstrap.css" rel="stylesheet"> + <link href="/css/bootstrap.min.css" rel="stylesheet"> <link href="/css/main.css" rel="stylesheet"> <link href="help.css" rel="stylesheet"> <link href="/highlight/styles/neovim.min.css" rel="stylesheet"> |