diff --git a/.gitignore b/.gitignore index e047765..127aabc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -_book/ node_modules/ .vscode/ .DS_Store +.vuepress/dist \ No newline at end of file diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..47e70e4 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,15 @@ +{ + "default": true, + "line_length": false, + "no-alt-text": false, + "no-inline-html": false, + "header-increment": false, + "no-duplicate-header": false, + "fenced-code-language": false, + "no-emphasis-as-heading": false, + "single-title": false, + "ul-style": { + "style": "asterisk" + }, + "link-fragments": false +} diff --git a/.markdownlintignore b/.markdownlintignore new file mode 100644 index 0000000..fcb0ce9 --- /dev/null +++ b/.markdownlintignore @@ -0,0 +1,6 @@ +/node_modules/ +*.json +/.git/ +/icons/ +/.github/ +/.vuepress/ \ No newline at end of file diff --git a/styles/website.css b/styles/website.css deleted file mode 100644 index 2ac4460..0000000 --- a/styles/website.css +++ /dev/null @@ -1,74 +0,0 @@ -/* -.book-body { - background: #220036; -} - -.markdown-section { - color: #17154D; -} -*/ - -/* .color-theme-2 #book-search-input { - color: #f4f4f5; - background-color: #252737; -} - -.color-theme-2 .search-results-item { - color: #bdcadb !important; -} */ - -@import url('https://fonts.googleapis.com/css?family=Anonymous+Pro|Roboto&display=swap'); - -.color-theme-2 .dropdown-menu { - background-color: #363b40; -} - -.color-theme-2 .dropdown-menu .dropdown-caret .caret-inner { - border-bottom: 9px solid #363b40; -} - -.book.color-theme-2 .book-body { - color: #ccc; - background: #2d3033; -} - -.book.color-theme-2 .book-body .page-wrapper .page-inner section { - background: #2d3033; -} - -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal { - color: #ccc; -} - -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal code { - background: #363b40; - border-color: #363b40; -} - -.book.color-theme-2 .book-body .page-wrapper .page-inner section.normal table tr { - background-color: #363b40; -} - -.book.color-theme-2 .book-header h1 { - color: #ccc; -} - -.book.color-theme-2 .book-summary { - background: #363b40; -} - -.book.font-family-1, .book.font-family-1 .book-summary { - font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Roboto", Helvetica, Arial, sans-serif; -} - -.book.font-family-1 h1, .book.font-family-1 h2, .book.font-family-1 h3 { - font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Roboto", Helvetica, Arial, sans-serif; -} - -.markdown-section code, .markdown-section pre { - font-family: "SF Mono", "Anonymous Pro", Consolas, "Liberation Mono", Menlo, Courier, monospace; -} - -.gitbook-link { - display: none !important -} \ No newline at end of file