jekyll-theme-github-like 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_config.yml +4 -4
- data/_includes/footer.html +3 -9
- data/_includes/head.html +7 -42
- data/_includes/header.html +9 -92
- data/_layouts/about.html +1 -1
- data/_layouts/default.html +2 -2
- data/_layouts/home.html +12 -9
- data/_layouts/post.html +46 -52
- data/assets/css/highlight.css +20 -0
- data/assets/css/jekyll-pygments-themes/README.md +23 -0
- data/assets/css/jekyll-pygments-themes/UNLICENSE.txt +24 -0
- data/assets/css/jekyll-pygments-themes/autumn.css +58 -0
- data/assets/css/jekyll-pygments-themes/borland.css +46 -0
- data/assets/css/jekyll-pygments-themes/bw.css +34 -0
- data/assets/css/jekyll-pygments-themes/colorful.css +61 -0
- data/assets/css/jekyll-pygments-themes/default.css +61 -0
- data/assets/css/jekyll-pygments-themes/emacs.css +61 -0
- data/assets/css/jekyll-pygments-themes/friendly.css +61 -0
- data/assets/css/jekyll-pygments-themes/fruity.css +70 -0
- data/assets/css/jekyll-pygments-themes/github.css +61 -0
- data/assets/css/jekyll-pygments-themes/manni.css +61 -0
- data/assets/css/jekyll-pygments-themes/monokai.css +65 -0
- data/assets/css/jekyll-pygments-themes/murphy.css +61 -0
- data/assets/css/jekyll-pygments-themes/native.css +70 -0
- data/assets/css/jekyll-pygments-themes/pastie.css +60 -0
- data/assets/css/jekyll-pygments-themes/perldoc.css +58 -0
- data/assets/css/jekyll-pygments-themes/tango.css +69 -0
- data/assets/css/jekyll-pygments-themes/trac.css +59 -0
- data/assets/css/jekyll-pygments-themes/vim.css +70 -0
- data/assets/css/jekyll-pygments-themes/vs.css +33 -0
- data/assets/css/jekyll-pygments-themes/zenburn.css +136 -0
- metadata +29 -16
- data/assets/css/code-2090a1c97bc1.css.map +0 -1
- data/assets/css/code-3d7b701fc6eb.css +0 -3
- data/assets/css/dark-27e9c50c7b31.css.map +0 -1
- data/assets/css/dark-d4a90c367f0c.css +0 -3
- data/assets/css/github-308036f32a6e.css.map +0 -1
- data/assets/css/github-fee1576e5bd2.css +0 -3
- data/assets/css/global-4c98d4f439a2.css.map +0 -1
- data/assets/css/global-ef47aa3710b2.css +0 -11
- data/assets/css/primer-665d09058d18.css +0 -13
- data/assets/css/primer-fa192ab78abe.css.map +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b5a54aeab0715cf03720348c1eac6f0e4f9674fc82853f1c7690a1691567350
|
|
4
|
+
data.tar.gz: 660d80af5ec1a0e9530739246ca375c5921c7d4f1b06ea3ab0d0337f5ff2ed41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e1662642ca6c07b752abc700ef3c6b5c69dd8c182899fd42c05efcd7afc32794e0fc28bc74da9309f9d3f72c842808cd40cfa5c90e28c2e47fa3a9e096f4c73
|
|
7
|
+
data.tar.gz: 1eccae23d7aebc35c0314c4812be952618440b36713c93b27660d138da2a9789cd82aac0223ec5f3b40fcc0738a26108bf7e232ecc11764c74f1193a0e7fab46
|
data/_config.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
theme: jekyll-theme-github-like
|
|
2
2
|
|
|
3
|
-
title:
|
|
4
|
-
description: "
|
|
3
|
+
title: JekyllThemeGitHubLike
|
|
4
|
+
description: "jekyll theme github like"
|
|
5
5
|
|
|
6
|
-
author:
|
|
7
|
-
email:
|
|
6
|
+
author: jekyll-theme-github-like
|
|
7
|
+
email: jekyll-theme-github-like@domain.com
|
data/_includes/footer.html
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
<footer class="footer container-xl px-3 px-md-4 px-lg-5">
|
|
2
|
-
<div class="
|
|
3
|
-
<div
|
|
4
|
-
<div class="mt-2 mt-lg-0 d-flex flex-items-center">© 2022 {{ site.author }}</div>
|
|
5
|
-
</div>
|
|
6
|
-
</div>
|
|
7
|
-
|
|
8
|
-
<div class="d-flex flex-justify-center pb-6">
|
|
9
|
-
<span class="f6 color-fg-muted"></span>
|
|
1
|
+
<footer class="footer container-xl px-3 px-md-4 px-lg-5 pb-6">
|
|
2
|
+
<div class="mt-6 pt-3 pb-2 f6 color-fg-muted border-top color-border-muted">
|
|
3
|
+
<div>© 2023 {{ site.author }}</div>
|
|
10
4
|
</div>
|
|
11
5
|
</footer>
|
data/_includes/head.html
CHANGED
|
@@ -7,48 +7,13 @@
|
|
|
7
7
|
{% else %}
|
|
8
8
|
<title>{{ site.title }}</title>
|
|
9
9
|
{% endif %}
|
|
10
|
-
<meta name="description" content="{{ site.description }}">
|
|
11
10
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
<link media="all" rel="stylesheet" href="{{ '/assets/css/global-ef47aa3710b2.css' | relative_url }}"/>
|
|
16
|
-
<link media="all" rel="stylesheet" href="{{ '/assets/css/github-fee1576e5bd2.css' | relative_url }}"/>
|
|
17
|
-
<link media="all" rel="stylesheet" href="{{ '/assets/css/code-3d7b701fc6eb.css' | relative_url }}"/>
|
|
11
|
+
{% if site.description %}
|
|
12
|
+
<meta name="description" content="{{ site.description }}">
|
|
13
|
+
{% endif %}
|
|
18
14
|
|
|
19
|
-
<!--
|
|
20
|
-
<
|
|
21
|
-
<
|
|
22
|
-
<
|
|
23
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-KdAZEmCLv7zagCUgOzlv10WgxL0DXtMZzeIO4MJGgQ7tpw9dqCPBqyHsrfio0JM1NFKnF3OrTZ7LbLLFWeGrWw==" src="https://github.githubassets.com/assets/environment-29d01912608b.js"></script>
|
|
24
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-ZQM3kW293O7WR1cDuHZ02wendjejLzwVD0wy4L1eCNr34RHXiY05wmHUx4hnV9WELD/OEZRGrzK+M8uwiZ/WEw==" src="https://github.githubassets.com/assets/vendors-node_modules_selector-observer_dist_index_esm_js-650337916dbd.js"></script>
|
|
25
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-Si8390GeCVPslYj8WomaMCyj33Jutd8vZ+Sdi6WXLSbdZRyC4wwijhTNyLy0zpHhfYnrynP6qArdz1PXti1sOg==" src="https://github.githubassets.com/assets/vendors-node_modules_delegated-events_dist_index_js-node_modules_github_details-dialog-elemen-63debe-4a2f37f7419e.js"></script>
|
|
26
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-y4q/Q8lPgxuYzQJwVhhMWYDJ60RPVbL9xHfxCeMKJHsarrBRFjYA/AEe8wtPw1PLhox5HqxIgqIfFNW+gXYTSQ==" src="https://github.githubassets.com/assets/vendors-node_modules_fzy_js_index_js-node_modules_github_catalyst_lib_index_js-cb8abf43c94f.js"></script>
|
|
27
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-JE0pLsqAg/D/QS77l4fZ88pjAfu9w4A4lzGUQjWix2h3W24+DOJ98Kq3jcDW5tFwTglIxZU43Qksg8C72W9E0g==" src="https://github.githubassets.com/assets/vendors-node_modules_github_filter-input-element_dist_index_js-node_modules_github_remote-inp-73b750-244d292eca80.js"></script>
|
|
28
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-dLTsUc4gGkg08fxQZXA6geV1V+spetoVjY4I5PF5JMBMZsuP0NqkBqAsHRpHwHaNTrxTs7CmW0yPyq1d8SXPsQ==" src="https://github.githubassets.com/assets/vendors-node_modules_github_time-elements_dist_index_js-74b4ec51ce20.js"></script>
|
|
29
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-Rh8gmnXkUHxZz6gYM0gapLCxVlAePcQEFYCfJCnydATStJech3+gN7XUdXj8Q+xihasvvbMzkETh8ZzAZKT8ww==" src="https://github.githubassets.com/assets/vendors-node_modules_github_file-attachment-element_dist_index_js-node_modules_primer_view-co-54af05-461f209a75e4.js"></script>
|
|
30
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-7RXbCviIvfrHb9HwQmHNSrWlMzQzT8jcqwnDobRawcVUNAqJnZmPkJSjRtOMJ8uq5kQHoC3l5wrPIlvd5AqOnA==" src="https://github.githubassets.com/assets/github-elements-ed15db0af888.js"></script>
|
|
31
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-N9EzzC0ccXrgv8gDEck11RWfs8l69B2SIyKbzJ6OD53N4Lmjke9wcUw6Zoe4y1WqKhuGS2Sl7B2vBAjmcUT6tA==" src="https://github.githubassets.com/assets/element-registry-37d133cc2d1c.js"></script>
|
|
32
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-6VTowByTC7C1Ae4nuESJ5iT76vchmVCzjuit7IR83B/TPkwjSserSlr83SYhLvIfNLvJfB2zH0bHBr8+fzIa+w==" src="https://github.githubassets.com/assets/vendors-node_modules_lit-html_lit-html_js-e954e8c01c93.js"></script>
|
|
33
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-3YkTrGWwrb2whIVWEwKEhghL4yI2UAHnLW/QtnYMQFLkfQUYD3gtJ2WqDJg8wzzSm0rP05KFDOsKKx4a1wQRdA==" src="https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_index_js-node_modules_github_hotkey_dist_index-9f48bd-dd8913ac65b0.js"></script>
|
|
34
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-/5zfcpKrnUxXsz8HKbUml3aosH3Bdz7hsB21H9gldcjjqyR+2rIU6vwTtQ9WDyCjfvhCPZImF5Ug8DbXiHpI3w==" src="https://github.githubassets.com/assets/vendors-node_modules_github_remote-form_dist_index_js-node_modules_scroll-anchoring_dist_scro-5881a7-ff9cdf7292ab.js"></script>
|
|
35
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-1tlhz9e+ol9n9xt7idDhxuffK7pabNqc3T7BuemAAK+9+RiAmA4b878HIxrFWo5KdoPdWPcpFXtECG58RHszWQ==" src="https://github.githubassets.com/assets/vendors-node_modules_github_paste-markdown_dist_index_esm_js-node_modules_github_quote-select-b114cf-d6d961cfd7be.js"></script>
|
|
36
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-iv5zc66CDnM+oVHCDv7cko+Bee6Q895DqJ52+TvMOtDYiEWLpTjQheRSbAygXr1SdVa7CSDLpnj3ze+dv1eIaw==" src="https://github.githubassets.com/assets/app_assets_modules_github_soft-nav_navigate_ts-8afe7373ae82.js"></script>
|
|
37
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-MUqllU1zWScJrG44uhPiK8irir0nw6SepGvp+rwjRQRnLnKTlIgaCO1N7OEZ3XSqHIJyNnZR1UlA29lBZrqxSw==" src="https://github.githubassets.com/assets/app_assets_modules_github_behaviors_keyboard-shortcuts-helper_ts-app_assets_modules_github_di-9b8a64-314aa5954d73.js"></script>
|
|
38
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-sFfyQjq1ObFkfG0l+z9HzzoSicV7DnX6adtbhmwkcwapEIZkJef1OWQl3cYK14uRj/DZcMBTf9630E9xIyxDeA==" src="https://github.githubassets.com/assets/app_assets_modules_github_behaviors_task-list_ts-app_assets_modules_github_has-interactions_t-0091d6-b057f2423ab5.js"></script>
|
|
39
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-iZTEUA76AQY6oHo8SRucuITxoL9oIEp+kjkLt14bWgeaZhs5CuXGkF8LbcBP4SJXmy0WkwisrWLzdykrDuLzHA==" src="https://github.githubassets.com/assets/app_assets_modules_github_behaviors_details_ts-app_assets_modules_github_behaviors_include-fr-a78de3-8994c4500efa.js"></script>
|
|
40
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-Z4gbcllweVT5ctPeic5SY6g0R9iV4iTsWMeRBFGXhvBBjGk86edzEqVf8j1aruDJrtSWuHgrNLw6VmQyROCY5g==" src="https://github.githubassets.com/assets/app_assets_modules_github_behaviors_commenting_edit_ts-app_assets_modules_github_behaviors_ht-83c235-67881b725970.js"></script>
|
|
41
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-DH9TxwSgMz1zge24rsqcjDJ+Rufu0H8H7wEWIdHlxz5eFXTM7mrt2sqKCC1x34rCN33MLmTSEkof+Rhd+qwPAw==" src="https://github.githubassets.com/assets/behaviors-0c7f53c704a0.js"></script>
|
|
42
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-d4hUbfQ2iadFUIZEYzWtw7J3+rUei1LoCrq3TAisyHMoW6ERm28NawvaJpppfMvroppQJc1HXteqjyRWmugzdA==" src="https://github.githubassets.com/assets/vendors-node_modules_delegated-events_dist_index_js-node_modules_github_catalyst_lib_index_js-57c13e1-7788546df436.js"></script>
|
|
43
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-O73Mm2+i15d5+OJHBJqEGJ7yINcBZotEHst9GPxgdFdVaI+nI9MDzrDJ50ZJUHzZxZytebBKxUc4mR+qNQuTtA==" src="https://github.githubassets.com/assets/notifications-global-3bbdcc9b6fa2.js"></script>
|
|
44
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-zJei4l6VynbbZLG3C4JZilhEZt1EJ/LeWP+Q7zEI0YsrLdu1L1rb1FU9zAvh+UBlY1xdiWuPpMTvh1VXzZWmYQ==" src="https://github.githubassets.com/assets/vendors-node_modules_optimizely_optimizely-sdk_dist_optimizely_browser_es_min_js-node_modules-089adc-cc97a2e25e95.js"></script>
|
|
45
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-/lhNtPP+1J1/pzkojtD6DD+TknYEAqz9ZzAk+abFIhtRd/swtsE1z2hsdAh1GnchAqU7+g6iC6nMcpGYK6AjjQ==" src="https://github.githubassets.com/assets/optimizely-fe584db4f3fe.js"></script>
|
|
46
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-F8z8SSakEr7YpDXzZGEdriFwg9sCN9ptY7hKHSZowNV10rNMr5Ihp5qxYkZxWMPrmXulB8ra4tuxEPpZdMNbeg==" src="https://github.githubassets.com/assets/vendors-node_modules_virtualized-list_es_index_js-node_modules_github_template-parts_lib_index_js-17ccfc4926a4.js"></script>
|
|
47
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-gKxQ0R5nZ6S07uwsTFxtiIC75SdVO8wv0Y/gdlCrCzyUgwo6SH3Se7/tlXIvNGpboX/6ebnW9SyhLWh3Bul+pA==" src="https://github.githubassets.com/assets/vendors-node_modules_github_file-attachment-element_dist_index_js-node_modules_github_filter--63965d-80ac50d11e67.js"></script>
|
|
48
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-jxdSPN0NbVmEhgHRpvTnZNPzdVVKP/Yr+ZvWmX/gEkfmHbjNPQBaQ0dZHQngvBiMp7dqTWay07pi723jOakVlQ==" src="https://github.githubassets.com/assets/app_assets_modules_github_ref-selector_ts-8f17523cdd0d.js"></script>
|
|
49
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-JTEIr8Kd1o8iqZYHhZz73Zllswwu+LM/TPfs4Vt2qzgG15K2zCDJ7a1gwJUixJ2e/S1T7PGn+uVumgoUNCVfTw==" src="https://github.githubassets.com/assets/repositories-253108afc29d.js"></script>
|
|
50
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-SlSqEMwovSZNKZc9AtWLclq4u59o8sN1Xc61FpkoDSEpCSIwL7pYUnFlJDJRa3BBPH/pShnnSPKDDwl4Rlt41g==" src="https://github.githubassets.com/assets/vendors-node_modules_github_clipboard-copy-element_dist_index_esm_js-node_modules_github_remo-8e6bec-4a54aa10cc28.js"></script>
|
|
51
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-cUI32hcX4byGeNg0lFCKjYPJmrs8z6w/qoLkomXtYj3V73x2oy08vJalw74NhYcN1jB5lbysMRRUA5ImZsgt9Q==" src="https://github.githubassets.com/assets/vendors-node_modules_github_mini-throttle_dist_decorators_js-node_modules_scroll-anchoring_di-a017b0-714237da1717.js"></script>
|
|
52
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-94nb28v4cR5Tjl//1yMu/VgLOs4KXjKfnjTpD/XBnamK+uonIol+2lAeKvgYM1/IPsEzuJnkSJkzfisjZ8cKdA==" src="https://github.githubassets.com/assets/app_assets_modules_github_diffs_blob-lines_ts-app_assets_modules_github_diffs_linkable-line-n-f314c3-f789dbdbcbf8.js"></script>
|
|
53
|
-
<script crossorigin="anonymous" defer="defer" type="application/javascript" integrity="sha512-rQkfLJZYegNFPydD/Gqh+T1MSPzzRRw6RWDyvLX7vIKqamT9oSlIzzFFsL/qz1BAobeFZv4PES6WCvFvMSUQ7A==" src="https://github.githubassets.com/assets/diffs-ad091f2c9658.js"></script>
|
|
15
|
+
<!-- style -->
|
|
16
|
+
<link rel="stylesheet" href="https://unpkg.com/@primer/css@^20.2.4/dist/primer.css" />
|
|
17
|
+
<link rel="stylesheet" href="{{ '/assets/css/jekyll-pygments-themes/native.css' | relative_url }}" />
|
|
18
|
+
<link rel="stylesheet" href="{{ '/assets/css/highlight.css' | relative_url }}" />
|
|
54
19
|
</head>
|
data/_includes/header.html
CHANGED
|
@@ -1,95 +1,12 @@
|
|
|
1
|
-
<div class="
|
|
2
|
-
<header class="Header-
|
|
3
|
-
<div class="
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<path fill-rule="evenodd" d="M1 2.75A.75.75 0 011.75 2h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 2.75zm0 5A.75.75 0 011.75 7h12.5a.75.75 0 110 1.5H1.75A.75.75 0 011 7.75zM1.75 12a.75.75 0 100 1.5h12.5a.75.75 0 100-1.5H1.75z"></path>
|
|
11
|
-
</svg>
|
|
12
|
-
</button>
|
|
13
|
-
</div>
|
|
14
|
-
</div>
|
|
15
|
-
|
|
16
|
-
<!-- 移动端菜单按钮 -->
|
|
17
|
-
<div class="HeaderMenu HeaderMenu--logged-out position-fixed top-0 right-0 bottom-0 height-fit position-lg-relative d-lg-flex flex-justify-between flex-items-center flex-auto">
|
|
18
|
-
<div class="d-flex d-lg-none flex-justify-end border-bottom color-bg-subtle p-3">
|
|
19
|
-
<button aria-label="Toggle navigation" aria-expanded="false" type="button" data-view-component="true" class="js-details-target btn-link">
|
|
20
|
-
<svg aria-hidden="true" height="24" viewBox="0 0 24 24" version="1.1" width="24" data-view-component="true" class="octicon octicon-x color-fg-muted">
|
|
21
|
-
<path fill-rule="evenodd" d="M5.72 5.72a.75.75 0 011.06 0L12 10.94l5.22-5.22a.75.75 0 111.06 1.06L13.06 12l5.22 5.22a.75.75 0 11-1.06 1.06L12 13.06l-5.22 5.22a.75.75 0 01-1.06-1.06L10.94 12 5.72 6.78a.75.75 0 010-1.06z"></path>
|
|
22
|
-
</svg>
|
|
23
|
-
</button>
|
|
24
|
-
</div>
|
|
25
|
-
|
|
26
|
-
<!-- 导航 -->
|
|
27
|
-
<nav class="mt-0 px-3 px-lg-0 mb-5 mb-lg-0" aria-label="Global">
|
|
28
|
-
<ul class="d-lg-flex list-style-none">
|
|
29
|
-
<!--
|
|
30
|
-
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
|
|
31
|
-
<details class="HeaderMenu-details details-overlay details-reset width-full">
|
|
32
|
-
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
|
|
33
|
-
分类
|
|
34
|
-
<svg x="0" y="0" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative"><path d="M1,1l6.2,6L13,1"></path></svg>
|
|
35
|
-
</summary>
|
|
36
|
-
|
|
37
|
-
<div class="dropdown-menu flex-auto rounded px-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
|
|
38
|
-
<ul class="list-style-none f5 pb-1">
|
|
39
|
-
<li><a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" href="#!">小程序开发</a></li>
|
|
40
|
-
<li><a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" href="#!">PHP</a></li>
|
|
41
|
-
<li><a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" href="#!">前端开发</a></li>
|
|
42
|
-
<li><a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold border-top pt-4 pb-2 mt-3" href="#!">按分类查看所有文章</a></li>
|
|
43
|
-
</ul>
|
|
44
|
-
</div>
|
|
45
|
-
</details>
|
|
46
|
-
</li>
|
|
47
|
-
|
|
48
|
-
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
|
|
49
|
-
<details class="HeaderMenu-details details-overlay details-reset width-full">
|
|
50
|
-
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
|
|
51
|
-
标签
|
|
52
|
-
<svg x="0" y="0" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative"><path d="M1,1l6.2,6L13,1"></path></svg>
|
|
53
|
-
</summary>
|
|
54
|
-
|
|
55
|
-
<div class="dropdown-menu flex-auto rounded px-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
|
|
56
|
-
<ul class="list-style-none f5 pb-1">
|
|
57
|
-
<li><a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" href="#!">Composer</a></li>
|
|
58
|
-
<li><a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" href="#!">PHP</a></li>
|
|
59
|
-
<li><a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" href="#!">Telescope</a></li>
|
|
60
|
-
<li><a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold py-2" href="#!">Linux</a></li>
|
|
61
|
-
<li><a class="lh-condensed-ultra d-block no-underline position-relative Link--primary text-bold border-top pt-4 pb-2 mt-3" href="#!">按标签查看所有文章</a></li>
|
|
62
|
-
</ul>
|
|
63
|
-
</div>
|
|
64
|
-
</details>
|
|
65
|
-
</li>
|
|
66
|
-
|
|
67
|
-
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
|
|
68
|
-
<a class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" href="#!">归档</a>
|
|
69
|
-
</li>
|
|
70
|
-
-->
|
|
71
|
-
|
|
72
|
-
<li class="mr-0 mr-lg-3 position-relative flex-wrap flex-justify-between flex-items-center border-bottom border-lg-bottom-0 d-block d-lg-flex flex-lg-nowrap flex-lg-items-center">
|
|
73
|
-
<a class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" href="{{ '/about' | relative_url }}">关于</a>
|
|
74
|
-
</li>
|
|
75
|
-
</ul>
|
|
76
|
-
</nav>
|
|
77
|
-
|
|
78
|
-
<!-- 搜索框 -->
|
|
79
|
-
<div class="d-lg-flex flex-items-center px-3 px-lg-0 text-center text-lg-left">
|
|
80
|
-
<div class="d-lg-flex min-width-0 mb-3 mb-lg-0">
|
|
81
|
-
<div class="header-search flex-auto js-site-search position-relative flex-self-stretch flex-md-self-auto mb-3 mb-md-0 mr-0 js-jump-to">
|
|
82
|
-
<div class="position-relative">
|
|
83
|
-
<form class="js-site-search-form">
|
|
84
|
-
<label class="form-control input-sm header-search-wrapper p-0 js-chromeless-input-container header-search-wrapper-jump-to position-relative d-flex flex-justify-between flex-items-center">
|
|
85
|
-
<input disabled type="text" class="form-control input-sm header-search-input jump-to-field js-jump-to-field js-site-search-focus" placeholder="Search not available">
|
|
86
|
-
</label>
|
|
87
|
-
</form>
|
|
88
|
-
</div>
|
|
89
|
-
</div>
|
|
90
|
-
</div>
|
|
91
|
-
</div>
|
|
92
|
-
</div>
|
|
1
|
+
<div class="color-bg-subtle">
|
|
2
|
+
<header class="Header container-xl px-3 px-md-4 px-lg-5 color-bg-subtle">
|
|
3
|
+
<div class="Header-item mr-4"><a class="Header-link color-fg-default" href="{{ '/' | relative_url }}">{{ site.title }}</a></div>
|
|
4
|
+
<div class="Header-item"><a class="Header-link" href="{{ '/' | relative_url }}">Posts</a></div>
|
|
5
|
+
<div class="Header-item"><a class="Header-link" href="{{ '/about' | relative_url }}">About</a></div>
|
|
6
|
+
|
|
7
|
+
<div class="Header-item Header-item--full"></div>
|
|
8
|
+
<div class="Header-item mr-0">
|
|
9
|
+
<div class="Header-item"><input disabled placeholder="Search is not available" type="search" class="form-control Header-input"></div>
|
|
93
10
|
</div>
|
|
94
11
|
</header>
|
|
95
12
|
</div>
|
data/_layouts/about.html
CHANGED
|
@@ -5,7 +5,7 @@ layout: default
|
|
|
5
5
|
<div class="clearfix container-xl px-3 px-md-4 px-lg-5 mt-4">
|
|
6
6
|
<div class="Box">
|
|
7
7
|
<div class="Box-header">
|
|
8
|
-
<h3 class="Box-title"
|
|
8
|
+
<h3 class="Box-title">About {{ site.title }}</h3>
|
|
9
9
|
</div>
|
|
10
10
|
<div class="Box-body">
|
|
11
11
|
{{ content }}
|
data/_layouts/default.html
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html lang="en" data-color-mode="dark" data-
|
|
2
|
+
<html lang="en" data-color-mode="dark" data-dark-theme="dark" data-light-theme="light">
|
|
3
3
|
{%- include head.html -%}
|
|
4
4
|
|
|
5
|
-
<body
|
|
5
|
+
<body>
|
|
6
6
|
<!-- header.html -->
|
|
7
7
|
{%- include header.html -%}
|
|
8
8
|
|
data/_layouts/home.html
CHANGED
|
@@ -13,7 +13,7 @@ layout: default
|
|
|
13
13
|
<div class="position-relative">
|
|
14
14
|
<details class="dropdown details-reset details-overlay d-inline-block" id="branch-select-menu">
|
|
15
15
|
<summary class="btn" aria-haspopup="true">
|
|
16
|
-
|
|
16
|
+
Default
|
|
17
17
|
<div class="dropdown-caret"></div>
|
|
18
18
|
</summary>
|
|
19
19
|
|
|
@@ -30,12 +30,14 @@ layout: default
|
|
|
30
30
|
|
|
31
31
|
<div class="flex-auto"></div>
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
<!--
|
|
34
|
+
<div class="d-none flex-self-center ml-3 flex-self-stretch d-none d-lg-flex flex-items-center lh-condensed-ultra">
|
|
34
35
|
<div>
|
|
35
|
-
<span class="color-fg-muted"
|
|
36
|
+
<span class="color-fg-muted">Last updated on</span>
|
|
36
37
|
<strong class="color-fg-muted">{{ site.posts[0].date | date: "%Y/%m/%d" }}</strong>
|
|
37
38
|
</div>
|
|
38
39
|
</div>
|
|
40
|
+
-->
|
|
39
41
|
</div>
|
|
40
42
|
|
|
41
43
|
<!-- 文章列表 -->
|
|
@@ -44,13 +46,15 @@ layout: default
|
|
|
44
46
|
<div class="js-details-container Details d-flex rounded-top-2 flex-items-center flex-wrap">
|
|
45
47
|
<div class="flex-1 d-flex flex-items-center min-width-0">
|
|
46
48
|
<div class="css-truncate css-truncate-overflow">
|
|
47
|
-
<span
|
|
49
|
+
<span>All Posts</span>
|
|
48
50
|
</div>
|
|
49
51
|
|
|
50
52
|
<div class="d-flex flex-auto flex-justify-end ml-3 flex-items-baseline">
|
|
51
53
|
<div>
|
|
54
|
+
<span class="color-fg-muted">total</span>
|
|
52
55
|
<strong>{{ site.posts.size }}</strong>
|
|
53
|
-
<span class="color-fg-muted"
|
|
56
|
+
<span class="color-fg-muted"> posts, last updated on </span>
|
|
57
|
+
<strong>{{ site.posts[0].date | date: "%Y/%m/%d" }}</strong>
|
|
54
58
|
</div>
|
|
55
59
|
</div>
|
|
56
60
|
</div>
|
|
@@ -103,10 +107,9 @@ layout: default
|
|
|
103
107
|
<div class="BorderGrid BorderGrid--spacious">
|
|
104
108
|
<div class="BorderGrid-row">
|
|
105
109
|
<div class="BorderGrid-cell">
|
|
106
|
-
<h2 class="mb-3 h4"
|
|
110
|
+
<h2 class="mb-3 h4">About</h2>
|
|
107
111
|
<p class="f4 my-3">
|
|
108
|
-
|
|
109
|
-
This is my dev blog.
|
|
112
|
+
A Jekyll theme like Github.com
|
|
110
113
|
</p>
|
|
111
114
|
</div>
|
|
112
115
|
</div>
|
|
@@ -115,7 +118,7 @@ layout: default
|
|
|
115
118
|
<div class="BorderGrid-cell">
|
|
116
119
|
<h2 class="h4 mb-3" data-pjax="#repo-content-pjax-container"
|
|
117
120
|
data-turbo-frame="repo-content-turbo-frame">
|
|
118
|
-
<a class="Link--primary no-underline"
|
|
121
|
+
<a class="Link--primary no-underline">Links</a>
|
|
119
122
|
</h2>
|
|
120
123
|
|
|
121
124
|
<div class="text-small">
|
data/_layouts/post.html
CHANGED
|
@@ -2,62 +2,56 @@
|
|
|
2
2
|
layout: default
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
<div
|
|
6
|
-
<div class="">
|
|
7
|
-
<
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
{% endfor %}
|
|
17
|
-
</div>
|
|
18
|
-
|
|
19
|
-
<div>
|
|
20
|
-
{% for tag in page.tags %}
|
|
21
|
-
<a href="#!" class="btn">{{ tag }}</a>
|
|
22
|
-
{% endfor %}
|
|
23
|
-
</div>
|
|
5
|
+
<div>
|
|
6
|
+
<div class="clearfix container-xl px-3 px-md-4 px-lg-5 mt-4">
|
|
7
|
+
<div>
|
|
8
|
+
<!-- Post Categories and Tags -->
|
|
9
|
+
<div class="d-flex flex-items-start flex-shrink-0 pb-3 flex-wrap flex-md-nowrap flex-justify-between flex-md-justify-start">
|
|
10
|
+
<!-- categories -->
|
|
11
|
+
<div id="blob-path" class="breadcrumb flex-auto flex-self-center min-width-0 text-normal mr-2 width-full width-md-auto flex-order-1 flex-md-order-none mt-3 mt-md-0">
|
|
12
|
+
{% for cate in page.categories %}
|
|
13
|
+
<a class="btn disabled color-fg-default mr-1">{{ cate }}</a>
|
|
14
|
+
{% endfor %}
|
|
15
|
+
</div>
|
|
24
16
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
17
|
+
<!-- tags -->
|
|
18
|
+
<div>
|
|
19
|
+
{% for tag in page.tags %}
|
|
20
|
+
<a class="btn disabled color-fg-default">{{ tag }}</a>
|
|
21
|
+
{% endfor %}
|
|
22
|
+
</div>
|
|
31
23
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
</ul>
|
|
41
|
-
</div>
|
|
42
|
-
</details>
|
|
43
|
-
</div>
|
|
24
|
+
<!-- more tags -->
|
|
25
|
+
<!-- TODO: waiting to be cleaned -->
|
|
26
|
+
<details id="blob-more-options-details" data-view-component="true" class="details-overlay details-reset position-relative">
|
|
27
|
+
<summary role="button" data-view-component="true" class="btn ml-2">
|
|
28
|
+
<svg aria-label="More options" role="img" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-kebab-horizontal">
|
|
29
|
+
<path d="M8 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm13 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"></path>
|
|
30
|
+
</svg>
|
|
31
|
+
</summary>
|
|
44
32
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
</div>
|
|
55
|
-
</div>
|
|
56
|
-
</readme-toc>
|
|
57
|
-
</div>
|
|
33
|
+
<div data-view-component="true">
|
|
34
|
+
<ul class="dropdown-menu dropdown-menu-sw">
|
|
35
|
+
<li data-toggle-for="blob-more-options-details">
|
|
36
|
+
<button data-toggle-for="jumpto-line-details-dialog" type="button" data-view-component="true" class="dropdown-item btn-link">
|
|
37
|
+
<span class="d-flex flex-items-baseline"><span class="flex-auto">not available</span></span>
|
|
38
|
+
</button>
|
|
39
|
+
</li>
|
|
40
|
+
<li class="dropdown-divider" role="none"></li>
|
|
41
|
+
</ul>
|
|
58
42
|
</div>
|
|
43
|
+
</details>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<!-- Post Content -->
|
|
47
|
+
<div class="Box mt-0 position-relative">
|
|
48
|
+
<div class="Box-body blob p-5 p-xl-6">
|
|
49
|
+
<article class="markdown-body container-lg">
|
|
50
|
+
<h1>{{ page.title }}</h1>
|
|
51
|
+
{{ content }}
|
|
52
|
+
</article>
|
|
59
53
|
</div>
|
|
60
|
-
</
|
|
61
|
-
</
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
62
56
|
</div>
|
|
63
57
|
</div>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.markdown-body figure.highlight {
|
|
2
|
+
margin: 0;
|
|
3
|
+
margin-bottom: 16px;
|
|
4
|
+
}
|
|
5
|
+
.markdown-body figure.highlight table.rouge-table {
|
|
6
|
+
margin-bottom: 0;
|
|
7
|
+
}
|
|
8
|
+
.markdown-body figure.highlight table.rouge-table,
|
|
9
|
+
.markdown-body figure.highlight table.rouge-table tr,
|
|
10
|
+
.markdown-body figure.highlight table.rouge-table td {
|
|
11
|
+
padding: 0;
|
|
12
|
+
border: none;
|
|
13
|
+
}
|
|
14
|
+
.markdown-body figure.highlight table.rouge-table td pre.lineno {
|
|
15
|
+
padding-left: 0;
|
|
16
|
+
}
|
|
17
|
+
.markdown-body figure.highlight table.rouge-table td pre {
|
|
18
|
+
padding-top: 0;
|
|
19
|
+
padding-bottom: 0;
|
|
20
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# jekyll-pygments-themes
|
|
2
|
+
|
|
3
|
+
A set of CSS theme files for Pygments (Python-based code highlighting tool)
|
|
4
|
+
created from the original built-in Pygments styles, ready for use with Jekyll.
|
|
5
|
+
|
|
6
|
+
## Theme Previews and Custom Theme Builder
|
|
7
|
+
- <https://jwarby.github.io/jekyll-pygments-themes>
|
|
8
|
+
|
|
9
|
+
## Using Themes Without Jekyll
|
|
10
|
+
If you want to use the themes with something other than Jekyll, you may need to
|
|
11
|
+
remove or change the CSS style prefix of `.highlight`.
|
|
12
|
+
|
|
13
|
+
## Links
|
|
14
|
+
|
|
15
|
+
- [Jekyll](http://jekyllrb.com/) ([direct link to code highlighting documentation](http://jekyllrb.com/docs/templates/#code-snippet-highlighting))
|
|
16
|
+
- [Pygments](http://pygments.org)
|
|
17
|
+
|
|
18
|
+
## Hacking
|
|
19
|
+
|
|
20
|
+
If you want to hack on the site, check out the [gh-pages](https://github.com/jwarby/jekyll-pygments-themes/tree/gh-pages) branch.
|
|
21
|
+
|
|
22
|
+
## Acknowledgements
|
|
23
|
+
Forked from [richleland/pygments-css](https://github.com/richleland/pygments-css).
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
This is free and unencumbered software released into the public domain.
|
|
2
|
+
|
|
3
|
+
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
4
|
+
distribute this software, either in source code form or as a compiled
|
|
5
|
+
binary, for any purpose, commercial or non-commercial, and by any
|
|
6
|
+
means.
|
|
7
|
+
|
|
8
|
+
In jurisdictions that recognize copyright laws, the author or authors
|
|
9
|
+
of this software dedicate any and all copyright interest in the
|
|
10
|
+
software to the public domain. We make this dedication for the benefit
|
|
11
|
+
of the public at large and to the detriment of our heirs and
|
|
12
|
+
successors. We intend this dedication to be an overt act of
|
|
13
|
+
relinquishment in perpetuity of all present and future rights to this
|
|
14
|
+
software under copyright law.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
20
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
21
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
22
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
|
|
24
|
+
For more information, please refer to <http://unlicense.org>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
|
2
|
+
.highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
|
|
3
|
+
.highlight .err { color: #F00000; background-color: #F0A0A0 } /* Error */
|
|
4
|
+
.highlight .k { color: #0000aa } /* Keyword */
|
|
5
|
+
.highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
|
|
6
|
+
.highlight .cp { color: #4c8317 } /* Comment.Preproc */
|
|
7
|
+
.highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
|
|
8
|
+
.highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */
|
|
9
|
+
.highlight .gd { color: #aa0000 } /* Generic.Deleted */
|
|
10
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
|
11
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
|
12
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
|
13
|
+
.highlight .gi { color: #00aa00 } /* Generic.Inserted */
|
|
14
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
|
15
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
|
16
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
|
17
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
|
18
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
|
19
|
+
.highlight .kc { color: #0000aa } /* Keyword.Constant */
|
|
20
|
+
.highlight .kd { color: #0000aa } /* Keyword.Declaration */
|
|
21
|
+
.highlight .kn { color: #0000aa } /* Keyword.Namespace */
|
|
22
|
+
.highlight .kp { color: #0000aa } /* Keyword.Pseudo */
|
|
23
|
+
.highlight .kr { color: #0000aa } /* Keyword.Reserved */
|
|
24
|
+
.highlight .kt { color: #00aaaa } /* Keyword.Type */
|
|
25
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
|
26
|
+
.highlight .s { color: #aa5500 } /* Literal.String */
|
|
27
|
+
.highlight .na { color: #1e90ff } /* Name.Attribute */
|
|
28
|
+
.highlight .nb { color: #00aaaa } /* Name.Builtin */
|
|
29
|
+
.highlight .nc { color: #00aa00; text-decoration: underline } /* Name.Class */
|
|
30
|
+
.highlight .no { color: #aa0000 } /* Name.Constant */
|
|
31
|
+
.highlight .nd { color: #888888 } /* Name.Decorator */
|
|
32
|
+
.highlight .ni { color: #800000; font-weight: bold } /* Name.Entity */
|
|
33
|
+
.highlight .nf { color: #00aa00 } /* Name.Function */
|
|
34
|
+
.highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */
|
|
35
|
+
.highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
|
|
36
|
+
.highlight .nv { color: #aa0000 } /* Name.Variable */
|
|
37
|
+
.highlight .ow { color: #0000aa } /* Operator.Word */
|
|
38
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
|
39
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
|
40
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
|
41
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
|
42
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
|
43
|
+
.highlight .sb { color: #aa5500 } /* Literal.String.Backtick */
|
|
44
|
+
.highlight .sc { color: #aa5500 } /* Literal.String.Char */
|
|
45
|
+
.highlight .sd { color: #aa5500 } /* Literal.String.Doc */
|
|
46
|
+
.highlight .s2 { color: #aa5500 } /* Literal.String.Double */
|
|
47
|
+
.highlight .se { color: #aa5500 } /* Literal.String.Escape */
|
|
48
|
+
.highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */
|
|
49
|
+
.highlight .si { color: #aa5500 } /* Literal.String.Interpol */
|
|
50
|
+
.highlight .sx { color: #aa5500 } /* Literal.String.Other */
|
|
51
|
+
.highlight .sr { color: #009999 } /* Literal.String.Regex */
|
|
52
|
+
.highlight .s1 { color: #aa5500 } /* Literal.String.Single */
|
|
53
|
+
.highlight .ss { color: #0000aa } /* Literal.String.Symbol */
|
|
54
|
+
.highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
|
|
55
|
+
.highlight .vc { color: #aa0000 } /* Name.Variable.Class */
|
|
56
|
+
.highlight .vg { color: #aa0000 } /* Name.Variable.Global */
|
|
57
|
+
.highlight .vi { color: #aa0000 } /* Name.Variable.Instance */
|
|
58
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
.highlight .hll { background-color: #ffffcc }
|
|
2
|
+
.highlight .c { color: #008800; font-style: italic } /* Comment */
|
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
|
4
|
+
.highlight .k { color: #000080; font-weight: bold } /* Keyword */
|
|
5
|
+
.highlight .cm { color: #008800; font-style: italic } /* Comment.Multiline */
|
|
6
|
+
.highlight .cp { color: #008080 } /* Comment.Preproc */
|
|
7
|
+
.highlight .c1 { color: #008800; font-style: italic } /* Comment.Single */
|
|
8
|
+
.highlight .cs { color: #008800; font-weight: bold } /* Comment.Special */
|
|
9
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
|
10
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
|
11
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
|
12
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
|
13
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
|
14
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
|
15
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
|
16
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
|
17
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
|
18
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
|
19
|
+
.highlight .kc { color: #000080; font-weight: bold } /* Keyword.Constant */
|
|
20
|
+
.highlight .kd { color: #000080; font-weight: bold } /* Keyword.Declaration */
|
|
21
|
+
.highlight .kn { color: #000080; font-weight: bold } /* Keyword.Namespace */
|
|
22
|
+
.highlight .kp { color: #000080; font-weight: bold } /* Keyword.Pseudo */
|
|
23
|
+
.highlight .kr { color: #000080; font-weight: bold } /* Keyword.Reserved */
|
|
24
|
+
.highlight .kt { color: #000080; font-weight: bold } /* Keyword.Type */
|
|
25
|
+
.highlight .m { color: #0000FF } /* Literal.Number */
|
|
26
|
+
.highlight .s { color: #0000FF } /* Literal.String */
|
|
27
|
+
.highlight .na { color: #FF0000 } /* Name.Attribute */
|
|
28
|
+
.highlight .nt { color: #000080; font-weight: bold } /* Name.Tag */
|
|
29
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
|
30
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
|
31
|
+
.highlight .mf { color: #0000FF } /* Literal.Number.Float */
|
|
32
|
+
.highlight .mh { color: #0000FF } /* Literal.Number.Hex */
|
|
33
|
+
.highlight .mi { color: #0000FF } /* Literal.Number.Integer */
|
|
34
|
+
.highlight .mo { color: #0000FF } /* Literal.Number.Oct */
|
|
35
|
+
.highlight .sb { color: #0000FF } /* Literal.String.Backtick */
|
|
36
|
+
.highlight .sc { color: #800080 } /* Literal.String.Char */
|
|
37
|
+
.highlight .sd { color: #0000FF } /* Literal.String.Doc */
|
|
38
|
+
.highlight .s2 { color: #0000FF } /* Literal.String.Double */
|
|
39
|
+
.highlight .se { color: #0000FF } /* Literal.String.Escape */
|
|
40
|
+
.highlight .sh { color: #0000FF } /* Literal.String.Heredoc */
|
|
41
|
+
.highlight .si { color: #0000FF } /* Literal.String.Interpol */
|
|
42
|
+
.highlight .sx { color: #0000FF } /* Literal.String.Other */
|
|
43
|
+
.highlight .sr { color: #0000FF } /* Literal.String.Regex */
|
|
44
|
+
.highlight .s1 { color: #0000FF } /* Literal.String.Single */
|
|
45
|
+
.highlight .ss { color: #0000FF } /* Literal.String.Symbol */
|
|
46
|
+
.highlight .il { color: #0000FF } /* Literal.Number.Integer.Long */
|