|
1 | 1 | # Project information |
2 | | -site_name: 'CLRS Solutions' |
3 | | -site_description: 'Solutions to Introduction to Algorithms Third Edition. CLRS Solutions. The textbook that a Computer Science (CS) student must read.' |
4 | | -site_author: 'Jay Chen' |
5 | | -site_url: 'https://walkccc.github.io/CLRS' |
| 2 | +site_name: CLRS Solutions |
| 3 | +site_description: Solutions to Introduction to Algorithms Third Edition. CLRS Solutions. The textbook that a Computer Science (CS) student must read. |
| 4 | +site_author: Jay Chen |
| 5 | +site_url: https://walkccc.github.io/CLRS |
6 | 6 |
|
7 | 7 | # Repository |
8 | | -repo_name: 'walkccc/CLRS' |
9 | | -repo_url: 'https://github.com/walkccc/CLRS' |
| 8 | +repo_name: walkccc/CLRS |
| 9 | +repo_url: https://github.com/walkccc/CLRS |
10 | 10 |
|
11 | 11 | # Copyright |
12 | | -copyright: 'Built by <a href="http://github.com/walkccc">Jay Chen</a> © 2017 - 2020' |
| 12 | +copyright: Built by <a href="http://github.com/walkccc">Jay Chen</a> © 2017 - 2020 |
13 | 13 |
|
14 | 14 | # Configuration |
15 | 15 | theme: |
16 | | - name: 'material' |
17 | | - language: 'en' |
18 | | - custom_dir: 'custom/' |
19 | | - favicon: 'assets/favicon.png' |
| 16 | + name: material |
| 17 | + language: en |
| 18 | + custom_dir: custom |
| 19 | + favicon: assets/favicon.png |
20 | 20 | palette: |
21 | | - primary: 'Teal' |
22 | | - accent: 'Blue' |
| 21 | + primary: teal |
| 22 | + accent: blue |
23 | 23 | font: |
24 | | - text: 'Roboto' |
25 | | - code: 'Roboto Mono' |
26 | | - logo: |
27 | | - icon: 'import_contacts' |
| 24 | + text: Roboto |
| 25 | + code: Roboto Mono |
| 26 | + icon: |
| 27 | + logo: octicons/globe |
| 28 | + repo: fontawesome/brands/github |
28 | 29 |
|
29 | 30 | # Customization |
30 | 31 | extra: |
31 | 32 | social: |
32 | | - - type: 'github' |
33 | | - link: 'https://github.com/walkccc' |
34 | | - - type: 'quote-left' |
35 | | - link: 'https://walkccc.github.io/blog' |
| 33 | + - icon: fontawesome/brands/github-square |
| 34 | + link: https://github.com/walkccc |
| 35 | + - icon: fontawesome/brands/linkedin |
| 36 | + link: https://www.linkedin.com/in/walkccc/ |
| 37 | + - icon: fontawesome/solid/code |
| 38 | + link: https://walkccc.github.io/LeetCode |
36 | 39 |
|
37 | 40 | extra_css: |
38 | | - - 'css/katex.css' |
39 | | - - 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css' |
| 41 | + - css/katex.css |
| 42 | + - css/custom.css |
| 43 | + - https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css |
40 | 44 |
|
41 | 45 | extra_javascript: |
42 | | - - 'js/katex.js' |
43 | | - - 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js' |
44 | | - - 'https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js' |
| 46 | + - js/katex.js |
| 47 | + - https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js |
| 48 | + - https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js |
45 | 49 |
|
46 | 50 | # Google Analytics |
47 | 51 | google_analytics: |
48 | | - - 'UA-117404761-1' |
49 | | - - 'auto' |
| 52 | + - UA-117404761-1 |
| 53 | + - auto |
50 | 54 |
|
51 | 55 | # Extensions |
52 | 56 | markdown_extensions: |
53 | | - - codehilite: |
| 57 | + - pymdownx.highlight: |
54 | 58 | linenums: true |
| 59 | + linenums_style: pymdownx-inline |
55 | 60 | - toc: |
56 | 61 | permalink: false |
57 | 62 | - pymdownx.superfences |
58 | 63 |
|
59 | 64 | nav: |
60 | 65 | - Preface: index.md |
61 | | - - Color: color.md |
62 | 66 | - I Foundations: |
63 | 67 | - 1 The Role of Algorithms in Computing: |
64 | 68 | - 1.1 Algorithms: Chap01/1.1.md |
|
0 commit comments