We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0022249 commit b6ae94dCopy full SHA for b6ae94d
src/resources/extensions/quarto/kbd/kbd.lua
@@ -2,9 +2,9 @@
2
return {
3
['kbd'] = function(args, kwargs, meta)
4
local function osname(v)
5
- if v == "win" then return "Windows" end
6
- if v == "mac" then return "Mac" end
7
- if v == "linux" then return "Linux" end
+ if v == "win" then return "windows" end
+ if v == "mac" then return "mac" end
+ if v == "linux" then return "linux" end
8
end
9
if quarto.doc.is_format("html:js") then
10
quarto.doc.add_html_dependency({
src/resources/extensions/quarto/kbd/resources/kbd.js
@@ -7,7 +7,7 @@
};
} else if (userAgent.includes("Windows")) {
- name: "win",
+ name: "windows",
11
12
} else {
13
0 commit comments