2018-05-08 06:58:50 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2018-05-09 06:58:54 +02:00
|
|
|
<title>QMK Firmware</title>
|
2019-10-01 19:51:23 +02:00
|
|
|
<link rel="icon" type="image/png" href="gitbook/images/favicon.png">
|
2018-05-08 06:58:50 +02:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
<meta name="description" content="Description">
|
2019-10-31 20:36:33 +01:00
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
2019-06-06 07:01:24 +02:00
|
|
|
<meta property="og:title" content="QMK Firmware Docs">
|
2019-06-06 07:23:18 +02:00
|
|
|
<meta property="og:type" content="website">
|
2019-09-02 16:35:02 +02:00
|
|
|
<meta property="og:description" content="The full documentation of the open-source firmware">
|
2019-06-06 07:01:24 +02:00
|
|
|
<meta property="og:image" content="https://i.imgur.com/svjvIrw.jpg">
|
|
|
|
<meta property="og:url" content="https://docs.qmk.fm">
|
2019-06-06 07:23:18 +02:00
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
2020-02-25 22:43:05 +01:00
|
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/buble.css" title="light">
|
|
|
|
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/dark.css" media="(prefers-color-scheme: dark)">
|
2022-05-15 00:08:32 +02:00
|
|
|
<link rel="stylesheet" href="//unpkg.com/docsify-toc@1.1.0/dist/toc.css">
|
2020-03-12 08:17:47 +01:00
|
|
|
<link rel="stylesheet" href="qmk_custom_light.css">
|
|
|
|
<link rel="stylesheet" href="qmk_custom_dark.css" media="(prefers-color-scheme: dark)">
|
2018-05-08 06:58:50 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app"></div>
|
|
|
|
<script>
|
|
|
|
window.$docsify = {
|
2019-11-28 23:14:04 +01:00
|
|
|
alias: {
|
2020-03-01 17:57:26 +01:00
|
|
|
// Translation aliases
|
2019-10-01 19:51:23 +02:00
|
|
|
'/en/(.*)': '/$1',
|
|
|
|
'/en-us/(.*)': '/$1',
|
|
|
|
'/en-gb/(.*)': '/$1',
|
|
|
|
'/.*/_langs.md': '/_langs.md',
|
2020-03-01 17:57:26 +01:00
|
|
|
|
|
|
|
// Moved pages
|
|
|
|
'/adding_a_keyboard_to_qmk': '/hardware_keyboard_guidelines',
|
2020-05-02 05:29:55 +02:00
|
|
|
'/build_environment_setup': '/newbs_getting_started',
|
2020-03-15 15:48:44 +01:00
|
|
|
'/cli_dev_configuration': '/cli_configuration',
|
2020-03-01 17:57:26 +01:00
|
|
|
'/dynamic_macros': '/feature_dynamic_macros',
|
|
|
|
'/feature_common_shortcuts': '/feature_advanced_keycodes',
|
|
|
|
'/glossary': '/reference_glossary',
|
|
|
|
'/key_lock': '/feature_key_lock',
|
|
|
|
'/make_instructions': '/getting_started_make_guide',
|
|
|
|
'/space_cadet_shift': '/feature_space_cadet_shift',
|
|
|
|
'/getting_started_getting_help': '/support',
|
|
|
|
'/tap_dance': '/feature_tap_dance',
|
|
|
|
'/unicode': '/feature_unicode',
|
|
|
|
'/python_development': '/cli_development',
|
2020-05-02 05:29:55 +02:00
|
|
|
'/getting_started_build_tools':'/newbs_getting_started',
|
2020-11-10 05:33:15 +01:00
|
|
|
'/tutorial':'/newbs',
|
2019-10-01 19:51:23 +02:00
|
|
|
},
|
|
|
|
basePath: '/',
|
2018-05-08 06:58:50 +02:00
|
|
|
name: 'QMK Firmware',
|
2019-11-28 23:14:04 +01:00
|
|
|
nameLink: {
|
|
|
|
'/ja/': '/#/ja/',
|
|
|
|
'/zh-cn/': '/#/zh-cn/',
|
|
|
|
'/': '/#/'
|
|
|
|
},
|
2018-05-08 06:58:50 +02:00
|
|
|
repo: 'qmk/qmk_firmware',
|
2019-01-10 17:22:57 +01:00
|
|
|
loadSidebar: '_summary.md',
|
2019-10-01 19:51:23 +02:00
|
|
|
loadNavbar: '_langs.md',
|
|
|
|
mergeNavbar: true,
|
2018-05-08 06:58:50 +02:00
|
|
|
auto2top: true,
|
2020-02-20 20:06:27 +01:00
|
|
|
autoHeader: true,
|
2019-11-23 17:07:15 +01:00
|
|
|
fallbackLanguages: [
|
|
|
|
'ja',
|
|
|
|
'zh-cn'
|
|
|
|
],
|
2018-05-08 06:58:50 +02:00
|
|
|
formatUpdated: '{YYYY}/{MM}/{DD} {HH}:{mm}',
|
2018-05-08 21:20:13 +02:00
|
|
|
search: {
|
|
|
|
paths: 'auto',
|
2019-10-01 19:51:23 +02:00
|
|
|
placeholder: {
|
|
|
|
'/zh-cn/': '搜索',
|
2019-11-11 23:27:48 +01:00
|
|
|
'/ja/': '検索',
|
2019-10-01 19:51:23 +02:00
|
|
|
'/': 'Search'
|
|
|
|
},
|
|
|
|
noData: {
|
|
|
|
'/zh-cn/': '没有结果!',
|
2019-11-11 23:27:48 +01:00
|
|
|
'/ja/': '見つかりません!',
|
2019-10-01 19:51:23 +02:00
|
|
|
'/': 'No results!'
|
|
|
|
},
|
2018-05-08 21:20:13 +02:00
|
|
|
depth: 6
|
2018-12-02 21:12:54 +01:00
|
|
|
},
|
2020-02-25 22:43:05 +01:00
|
|
|
markdown: {
|
|
|
|
smartypants: true,
|
|
|
|
smartLists: true,
|
|
|
|
},
|
|
|
|
copyCode: {
|
|
|
|
buttonText: {
|
|
|
|
'/zh-cn/': '点击复制',
|
|
|
|
'/' : 'Copy to clipboard'
|
|
|
|
},
|
|
|
|
errorText: {
|
|
|
|
'/zh-cn/': '错误',
|
|
|
|
'/' : 'Error'
|
|
|
|
},
|
|
|
|
successText: {
|
|
|
|
'/zh-cn/': '复制',
|
|
|
|
'/' : 'Copied'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toc: {
|
|
|
|
scope: '.markdown-section',
|
2020-02-26 01:33:35 +01:00
|
|
|
headings: 'h1, h2',
|
2020-02-25 22:43:05 +01:00
|
|
|
title: 'Table of Contents',
|
|
|
|
},
|
2020-12-27 17:56:10 +01:00
|
|
|
tabs: {
|
|
|
|
persist : false,
|
|
|
|
tabComments: false,
|
|
|
|
},
|
2019-10-01 19:51:23 +02:00
|
|
|
plugins: [
|
|
|
|
function (hook, vm) {
|
|
|
|
hook.beforeEach(function (html) {
|
|
|
|
if (/githubusercontent\.com/.test(vm.route.file)) {
|
|
|
|
url = vm.route.file
|
|
|
|
.replace('raw.githubusercontent.com', 'github.com')
|
|
|
|
.replace(/\/master/, '/blob/master')
|
|
|
|
} else {
|
2019-12-18 04:01:13 +01:00
|
|
|
url = 'https://github.com/qmk/qmk_firmware/edit/master/docs/' + vm.route.file
|
2019-10-01 19:51:23 +02:00
|
|
|
}
|
2019-12-18 04:01:13 +01:00
|
|
|
var editHtml = ':pencil2: [Edit this page](' + url + ')\n'
|
2019-10-01 19:51:23 +02:00
|
|
|
return html
|
|
|
|
+ '\n\n----\n\n'
|
|
|
|
+ editHtml
|
|
|
|
})
|
|
|
|
},
|
|
|
|
]
|
2018-05-08 06:58:50 +02:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
2018-05-08 21:20:13 +02:00
|
|
|
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
|
2018-05-08 06:58:50 +02:00
|
|
|
<script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
|
2020-12-27 17:56:10 +01:00
|
|
|
<script src="//unpkg.com/docsify-tabs@1"></script>
|
2020-02-25 22:43:05 +01:00
|
|
|
<script src="//unpkg.com/docsify-copy-code@2"></script>
|
2022-05-15 00:08:32 +02:00
|
|
|
<script src="//unpkg.com/docsify-toc@1.1.0/dist/toc.js"></script>
|
2018-05-08 06:58:50 +02:00
|
|
|
<script src="//unpkg.com/prismjs/components/prism-bash.min.js"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-c.min.js"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-cpp.min.js"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-json.min.js"></script>
|
|
|
|
<script src="//unpkg.com/prismjs/components/prism-makefile.min.js"></script>
|
2018-05-08 07:40:57 +02:00
|
|
|
<script>
|
2020-03-01 17:57:26 +01:00
|
|
|
// Register the cache worker for offline viewing mode
|
|
|
|
// https://docsify.now.sh/pwa
|
2018-05-08 07:40:57 +02:00
|
|
|
if (typeof navigator.serviceWorker !== 'undefined') {
|
|
|
|
navigator.serviceWorker.register('sw.js')
|
|
|
|
}
|
|
|
|
</script>
|
2018-05-08 06:58:50 +02:00
|
|
|
</body>
|
|
|
|
</html>
|