_config.yml 22.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
# ---------------------------------------------------------------
# Menu config
# ---------------------------------------------------------------

# Header navigation menu.
# Value before `||` delimiter is the target link.
# Value after `||` delimiter is the name of FontAwesome icon.
# See: https://fontawesome.com/v4.7.0/icons/
# If not set, "question-circle-o" icon will be shown.
menu:
  home: / || home
  archives: /archives/ || folder-open
13 14 15
  # categories: /categories/ || th
  # tags: /tags/ || tags
  # about: /about/ || user
16 17 18 19 20 21 22 23
  # xxx: /xxx/ || xxx

menu_settings:
  # Only show by icon.
  icon_only: false
  # Only show by text.
  text_only: false

24
# ---------------------------------------------------------------
25
# Site config
26
# ---------------------------------------------------------------
EvanOne(文一)'s avatar
init  
EvanOne(文一) 已提交
27

28
favicon:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
29 30
  small: /images/icons/favicon-16x16.png
  medium: /images/icons/favicon-32x32.png
31 32 33
  # ! -----------------------------------------------------
  # ! If you don't understand, please ignore the following.
  # ! -----------------------------------------------------
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
34 35 36 37 38
  # apple_touch_icon: /images/icons/apple-touch-icon.png
  # safari_pinned_tab: /images/icons/logo-stun.svg
  # msapplication: /images/icons/favicon-144x144.png

# PWA
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
39
# See: https://github.com/lavas-project/hexo-pwa/
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
40 41 42
pwa:
  enable: false
  manifest: /manifest.json
43
  theme_color: '#54bcff'
44

45
header:
46
  # Header height (Support for all types of CSS size units).
47 48 49 50 51
  height: 80%
  # Header navigation bar height (Support for all types of CSS size units).
  nav_height: 50px
  # Background image in the header.
  bg_image:
52
    enable: false
53
    # In theme directory (source/images): /images/avatar.png
54 55
    # In site directory (source/uploads): /uploads/avatar.png
    # You can also use a link of image.
56
    url:
57 58
  # Mask effect of the top background image.
  mask:
59
    enable: false
60 61
    # Opacity of mask (value: 0 ~ 1).
    opacity: 0.5
62

63 64 65
# Creative Commons 4.0 International License.
creative_commons:
  enable: true
66 67
  # Available: BY | BY-SA | BY-ND | BY-NC | BY-NC-SA | BY-NC-ND.
  # For details, please see: https://creativecommons.org/share-your-work/licensing-types-examples/
68 69 70
  license: BY-NC-SA
  # Show the CC license in the sidebar.
  sidebar: true
71
  # Show the CC license at the post bottom.
72 73 74
  post: true
  # You can set a language value if you prefer a translated version of CC license.
  # Valid values of language: en, zh, etc.
75
  # If not set, "en" will be used by default.
76
  language:
77 78 79 80 81

# Back to top button.
back2top:
  enable: true
  icon:
82
    # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
83 84 85 86 87 88
    # `rocket` is recommended.
    name: rocket
    # Animation of rocket launch.
    animation: true
    # Rotation Angle of icon.
    rotate: -45deg
89
    # Please use quote to wrap value (All CSS size units are supported).
90
    color: '#49b1f5'
91
    # Colour when the mouse hovers it.
92
    hover_color: '#fc6423'
93

94
# Footer of your site.
95
footer:
96 97
  # Background image in the footer.
  bg_image:
98
    enable: false
99
    # In theme directory (source/images): /images/avatar.png
100 101
    # In site directory (source/uploads): /uploads/avatar.png
    # You can also use a link of image.
102
    url:
103
  # Copyright information.
104 105 106
  copyright:
    enable: true
    # If not set, will be used `author` from Hexo main config.
107
    #   (e.g. liuyib. All Rights Reserved.)
108
    text:
109
    # Start time. If not set, the current year will be used.
110
    since:
111
    # End time. If not set, the current year will be used.
112
    end:
113
  # The icon between the copyright year and the owner.
114
  icon:
115
    enable: true
116
    # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
117
    # `heart` is recommended with animation in red (#ff0000).
118
    name: heart
119
    # Heart beat animation.
120
    animation: true
121
    # Please use quote to wrap value (All CSS size units are supported).
122
    color: '#ff0000'
123 124 125 126
  # Hexo link (Powered by Hexo).
  powered:
    enable: true
    # Version info of Hexo after Hexo link (e.g. vX.X.X).
127
    version: true
128 129 130 131 132
  # Theme info link (Theme - stun).
  theme:
    enable: true
    # Version info of theme after theme info (e.g. vX.X.X).
    version: true
133
  # Beian icp information for Chinese users. see: http://www.miitbeian.gov.cn/
134 135 136
  beian:
    enable: false
    # 备案 XXXXXXXX 号
137
    icp:
138
  # Any custom text (e.g. Hosted by <a href="https://pages.github.com/" rel="noopener" target="_blank">Github Pages</a>).
139 140
  custom:
    enable: false
141
    text:
142 143 144 145

# ---------------------------------------------------------------
# Sidebar config
# ---------------------------------------------------------------
146

147
sidebar:
148
  enable: true
149
  # Sidebar position, available values: left | right.
150
  position: right
151
  # Sidebar offset from top menubar (Only px units are supported).
152
  offsetTop: 20px
153
  # Horizon line.
154
  horizon_line: true
EvanOne(文一)'s avatar
init  
EvanOne(文一) 已提交
155

156 157
author:
  enable: true
158
  # Avatar in the sidebar.
159
  avatar:
160
    # In theme directory (source/images): /images/avatar.png
161
    # In site directory (source/uploads): /uploads/avatar.png
162
    # You can also use a link of image.
163
    url: /images/avatar.png
164
    # If true, the avatar would be displayed in a circle.
165
    rounded: true
166
    # The value should be chosen from 0 to 1.
167
    opacity: 1
168
    # Mouse hover animation, available value: turn | shake.
169
    animation: turn
170 171
  # Your favorite motto.
  motto: hello world
172

173
# Social links.
174 175
# Value before `||` delimiter is the target link.
# Value after `||` delimiter is the name of FontAwesome icon.
176
# See: https://fontawesome.com/v4.7.0/icons/
177
# If you can`t find a suitable icon, you can choose to display the original
178
#   text by adding the "origin" prefix (e.g. origin:sf, then "sf" will be show).
179 180 181
social:
  github: https://github.com/ || github
  google: https://plus.google.com/ || google
182 183 184 185 186 187 188 189
  # twitter: https://twitter.com/ || twitter
  # youtube: https://youtube.com/ || youtube
  # segmentfault: https://segmentfault.com/ || origin:sf
  # weibo: https://weibo.com/ || weibo
  # zhihu: https://www.zhihu.com/ || origin:知
  # wechat: yournumber || weixin
  # telegram: yournumber || telegram
  # qq: yournumber || qq
190
  # xxx: xxx || (origin:)xxx
191

192
social_setting:
193
  enable: false
194
  # Only show by icon.
195
  icon_only: true
196

197
# Table Of Contents in the Sidebar.
198 199 200 201
toc:
  enable: true
  # Automatically add list number to toc.
  number: true
202
  # If true, all words will be placed on the next lines when they overflow.
203
  wrap: true
204 205 206 207
  # If true, the toc of post will always be displayed, rather than the activated part of it.
  expand_all: false
  # Maximum heading depth of generated toc. You can set it in the
  #   post through `toc_max_depth` in Front-matter.
208
  # e.g. value: 3, will use h1~3 to generated toc.
209
  max_depth: 6
210

211
# Subscribe of email and rss.
212
feed:
213
  enable: false
214
  # Enter your email subscription link (e.g. http://eepurl.com/guAE6j).
215
  email:
216 217 218 219
  # Enter the rss address of you set (e.g. /atom.xml).
  # Dependencies: https://github.com/hexojs/hexo-generator-feed/
  # Don't enable this before install dependencies
  #   by `npm install hexo-generator-feed --save` in hexo directory.
220
  rss:
221

222
# The reading progress of post.
223 224
reading_progress:
  enable: true
225
  # Please use the quote to wrap value (All CSS size units are supported).
226
  color: '#fc6423'
227
  # Support for all types of CSS size units.
228
  height: 1px
229

230 231 232
# ---------------------------------------------------------------
# Post config
# ---------------------------------------------------------------
233

234
# The meta-information at the front of the post.
235
post_meta:
236
  # Only show by icon.
237 238
  icon_only: false
  # Show create information.
239 240 241 242
  created:
    enable: true
    # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
    icon: calendar-o
243
  # Show update information.
244 245 246 247 248
  updated:
    enable: true
    # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
    icon: calendar-check-o
  # Count the reading time of the post.
249
  # Dependencies: https://github.com/willin/hexo-wordcount/
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
250
  # Don't enable this before install dependencies
251
  #   by `npm install hexo-wordcount --save` in hexo directory.
252 253 254 255 256 257 258 259 260 261 262
  reading_time:
    enable: false
    # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
    icon: clock-o
    # Set reading speed to estimate reading time.
    speed:
      # Reading speed of zh-CN.
      zh: 200
      # Reading speed of en-US.
      en: 80
  # Count the words of the post.
263
  # Dependencies: https://github.com/willin/hexo-wordcount/
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
264
  # Don't enable this before install dependencies
265
  #   by `npm install hexo-wordcount --save` in hexo directory.
266 267 268 269
  word_count:
    enable: false
    # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
    icon: file-word-o
270

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
271 272 273 274 275 276
# The article list on the homepage or archives page.
post_list:
  # Whether to paginate.
  paginate:
    home: true
    archives: false
277 278
  # Whether to show the cover image of post.
  cover_image:
279
    home: false
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
280 281 282 283 284 285 286 287 288 289 290

# The widget of post.
post_widget:
  # Show tags at the bottom of the post.
  tags: true
  # Show "post end" at the bottom of the post.
  end_text:
    enable: true
    # Show the horizon line before the text of the end.
    horizon_line: true

291 292 293 294 295
# Automatically retain article excerpt.
auto_excerpt:
  enable: false
  length: 150

296
# Stick post to the top.
297 298 299
# Dependencies: https://github.com/netcan/hexo-generator-index-pin-top/
# Don't enable this before install dependencies
#   by `npm install hexo-generator-index-pin-top --save` in hexo directory.
300
stick_top:
301
  # Position of icon, available values: left | right.
302 303 304 305 306 307
  position: right
  # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
  icon: thumb-tack
  # Rotation Angle of icon.
  rotate: 45deg
  # Please use the quote to wrap value (All CSS size units are supported).
308
  color: '#999'
309

310
# Code highlight.
311 312 313 314 315
# values:
# - light
# - dark
# - ocean
highlight_theme: light
316

317 318
# Code wrap
# values: true or false.
319
code_word_wrap: false
320

321
# Horizonal alignment of img.
322 323 324 325
# values:
# - left
# - center
# - right
326
#
327
# If you empty it, images will show by default.
328
img_horizonal_align:
329

330
# Reward
331
reward:
332
  enable: false
333 334 335
  # Fill in your QR Code for collecting money.
  alipay:
  wechat:
336

337
# ---------------------------------------------------------------
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
338 339 340 341
# Comment config
# ---------------------------------------------------------------

# Gitment
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
342
# See: https://github.com/imsun/gitment/
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
343
gitment:
344
  enable: false
345
  # Github username.
346
  owner:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
347
  # Github repository.
348
  repo:
349
  # Github Application Client ID.
350
  client_id:
351
  # Github Application Client Secret.
352
  client_secret:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
353 354 355
  # Enable / Disable Lazy load. Enable is recommended.
  lazy: true

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
356
# Gittalk
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
357
# See: https://github.com/gitalk/gitalk/
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
358 359 360
gitalk:
  enable: false
  # Github username.
361
  owner:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
362
  # Github repository.
363
  repo:
364
  # Github Application Client ID.
365
  client_id:
366
  # Github Application Client Secret.
367
  client_secret:
368
  # GitHub repo owner and collaborators, only these guys can initialize github issues.
369
  admin:
370
  # Facebook-like distraction free mode.
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
371
  distraction_free_mode: false
372
  # Gitalk's display language depends on user's browser or system environment.
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
373
  # If you want everyone visiting your site to see a uniform language,
374 375
  #   you can set a force language value.
  # Available values: en, zh-CN, es-ES, fr, ru, zh-TW.
376
  language:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
377

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
378 379 380 381 382
# Valine
# See: https://valine.js.org/quickstart.html
valine:
  enable: false
  # Your leancloud application appid.
383
  appid:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
384
  # Your leancloud application appkey.
385
  appkey:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
  # Mail notifier.
  notify: true
  # Verification code.
  verify: true
  # Comment box placeholder.
  placeholder: Just go go
  # Gravatar style.
  avatar: mp
  # Custom comment header.
  meta: nick,mail,link
  # Pagination size.
  pageSize: 10
  # Article reading statistics.
  visitor: false
  # Whether to record the commenter IP.
  recordIP: false
  # language, available values: en, zh-cn.
403
  language:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
404

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
405 406
# Livere
# See: https://www.livere.com/
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
407 408
livere:
  enable: false
409
  uid:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
410

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
411 412 413 414
# Disqus
# See: https://disqus.com/
disqus:
  enable: false
415
  shortname:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
416 417
  count: true

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
418
# ---------------------------------------------------------------
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
419 420
# Statistics and Analytics config
# ---------------------------------------------------------------
421

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
422 423
# Busuanzi statistics
# See: https://busuanzi.ibruce.info/
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
424
busuanzi:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
425
  enable: false
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
426
  site:
427
    # Only show by icon.
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
428 429 430 431 432 433 434 435 436 437 438
    icon_only: false
    # Number of unique visitor to the entire site.
    uv:
      enable: true
      # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
      icon: user
    # Number of page view to the entire site.
    pv:
      enable: true
      # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
      icon: eye
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
439 440
  # Number of page view to a post.
  post_pv:
441
    enable: true
442
    # Only show by icon.
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
443 444
    icon_only: false
    # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
445 446
    icon: eye

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
447 448 449 450 451 452 453
# ---------------------------------------------------------------
# Search config
# ---------------------------------------------------------------

# Algolia Search
# Dependencies: https://github.com/algolia/instantsearch.js/
algolia_search:
454
  enable: false
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
455 456 457 458 459 460 461
  hits:
    # Number of search results displayed per page.
    per_page: 10
  labels:
    # Whether to show stats of search.
    show_stats: true

462 463 464 465 466
# Local Search
# See: https://github.com/wzpan/hexo-generator-search/
local_search:
  enable: false

467 468 469 470 471 472 473 474 475
# ---------------------------------------------------------------
# Background config
# ---------------------------------------------------------------

# Canvas-ribbon
# Dependencies: https://github.com/hustcc/ribbon.js
canvas_ribbon:
  enable: false
  # The width of the ribbon.
476
  size: 120
477 478 479 480 481 482 483 484 485 486 487 488 489
  # The transparency of the ribbon.
  alpha: 0.6
  # The display level of the ribbon.
  zIndex: -1

# Canvas-nest
# Dependencies: https://github.com/hustcc/canvas-nest.js
canvas_nest:
  enable: false
  # Display on mobile or not
  onmobile: true
  # RGB values, use ',' to separate
  # Color for lines
490
  color: '0,0,0'
491 492 493 494 495 496 497
  # The opacity of line: 0 ~ 1
  opacity: 0.6
  # The number of lines
  count: 99
  # z-index property of the background
  zIndex: -1

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
498 499 500 501
# ---------------------------------------------------------------
# Math and Chart config
# ---------------------------------------------------------------
math:
502
  enable: false
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
503 504 505 506 507 508 509 510

  # Only the page which has `math: true` in Front-matter will render.
  # If true, it will load mathjax / katex srcipt EVERY PAGE.
  per_page: false

  engine: katex

  # See: https://github.com/mathjax/MathJax/
511
  # hexo-renderer-kramed (or hexo-renderer-markdown-it-plus or hexo-renderer-pandoc) needed to full MathJax support.
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
512 513 514 515 516 517 518
  mathjax:
    cdn: https://cdn.jsdelivr.net/npm/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML

    # See: https://mhchem.github.io/MathJax-mhchem/
    mhchem:
      enable: false
      mhchem_js: https://cdn.jsdelivr.net/npm/mathjax-mhchem@3.3.2/mhchem.min.js
519

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
520 521 522 523 524 525 526 527 528 529
  # hexo-renderer-markdown-it-plus (or hexo-renderer-markdown-it with markdown-it-katex plugin) needed to full Katex support.
  katex:
    cdn: https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/katex.min.css

    copy_tex:
      # See: https://github.com/KaTeX/KaTeX/tree/master/contrib/copy-tex
      enable: true
      copy_tex_js: https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/contrib/copy-tex.min.js
      copy_tex_css: https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/contrib/copy-tex.css

530
# ---------------------------------------------------------------
531 532
# Other config
# ---------------------------------------------------------------
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
533

534 535 536 537
# Fancybox
# See: https://fancyapps.com/fancybox/3/
fancybox: false

538 539 540 541 542
# Whether to enlarge the image when clicked.
zoom_image:
  enable: true
  # The color of mask.
  # Please use the quote to wrap value (All CSS size units are supported).
543
  mask_color: 'rgba(0,0,0,0.6)'
544

545 546
# If you are use "photos" attribute in the Front-matter,
#   you can enable this to show images in waterfalls flow.
547
# See: https://github.com/desandro/masonry/
548 549 550 551 552 553
gallery_waterfall:
  enable: false
  col_width: 220px
  gap_x: 10px
  gap_y: 10px

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
554 555 556 557 558 559 560
# Lazy load the images of post.
# See: https://github.com/tuupola/lazyload
lazyload:
  enable: false
  # Available values: gif | block
  placeholder: gif

EvanOne(文一)'s avatar
EvanOne(文一) 已提交
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
# Quicklink support
# See: https://github.com/GoogleChromeLabs/quicklink/
quicklink:
  enable: false

  # Quicklink (quicklink.umd.js script) is loaded on demand.
  # Add `quicklink: true` in Front-matter of the page or post you need.
  # Home page and archive page can be controlled through home and archive options below.
  home: true
  archive: true

  # Initialize quicklink after the load event fires.
  delay: true
  # Custom a time in milliseconds by which the browser must execute prefetching.
  timeout: 10000
  # Enable fetch() or falls back to XHR.
  priority: true

  # For more flexibility you can add some patterns (RegExp, Function, or Array) to ignores.
  # See: https://github.com/GoogleChromeLabs/quicklink#custom-ignore-patterns
  # ! ---------------------------------------------------------------
  # ! Leave "ignores" as empty if you don't understand what it means.
  # ! ---------------------------------------------------------------
  # Example:
  # ignores:
  #   - /\/api\/?/
  #   - uri => uri.includes('.zip')
  #   - (uri, el) => el.hasAttribute('nofollow')
  ignores:

591 592 593 594
# Google AdSense
google_adsense:
  enable: false
  js_src: https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
595
  client:
596 597
  enable_page_level_ads: true

598 599 600 601 602 603 604 605 606
# The links with `target="_blank"` attribute.
external_link:
  # Adding an icon make it easier for users to know that this is an external link.
  icon:
    enable: true
    # Icon name in FontAwesome, see: https://fontawesome.com/v4.7.0/icons/
    # `external-link` is recommended.
    name: external-link
    # Please use the quote to wrap value (All CSS size units are supported).
607
    color: '#aaa'
608

609 610 611 612 613 614 615 616
# The shortcuts of the site.
shortcuts:
  # Switch to the prev / next post by key.
  # "Ctrl + ←" is the shortcuts to prev post.
  # "Ctrl + →" is the shortcuts to next post.
  switch_post:
    enable: false

617
# Tag cloud
618
# If not used, comment it or ignore it.
619 620
tag_cloud:
  # Color for tag (please use the quote to wrap value, only support HEX).
621 622
  start_color: '#a4d8fa'
  end_color: '#49b1f5'
623 624 625
  # Size for tag.
  min_size: 24
  max_size: 34
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
626
  # Maximum number of tags displayed. Change it if you have more than 200 tags.
627
  max_amount: 200
628

629
# Assets
630
# In theme directory (source/css).
631
css: css
632
# In theme directory (source/js).
633
js: js
634 635
# In theme directory (source/images).
images: images
636

637
# Set a CDN address for the vendor you want to customize.
638 639 640 641
# ! -----------------------------------------------------
# ! Do not edit the follow configs.
# ! Unless you know what you are doing.
# ! -----------------------------------------------------
642
cdn:
643 644 645 646 647
  # Using version: 4.7.0
  # See: https://fontawesome.com/
  # Example:
  # fontawesome: //cdn.jsdelivr.net/npm/font-awesome@4/css/font-awesome.min.css
  # fontawesome: //cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css
648
  fontawesome:
649 650 651 652 653

  # Using version: 3.4.1
  # Example:
  # jquery: //cdn.jsdelivr.net/npm/jquery@v3.4.1/dist/jquery.min.js
  # jquery: //cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js
654 655
  jquery:

656 657 658 659 660 661 662
  # Using version: 1.5.2
  # See: http://velocityjs.org/
  # Example:
  # velocity: //cdn.jsdelivr.net/npm/velocity-animate@1.5.2/velocity.min.js
  # velocity: //cdnjs.cloudflare.com/ajax/libs/velocity/1.5.2/velocity.min.js
  # velocity_ui: //cdn.jsdelivr.net/npm/velocity-animate@1.5.2/velocity.ui.min.js
  # velocity_ui: //cdnjs.cloudflare.com/ajax/libs/velocity/1.5.2/velocity.ui.min.js
663 664
  velocity:
  velocity_ui:
665 666 667 668 669 670 671 672

  # gitalk & js-md5
  # Using version: latest & latest
  # See: https://github.com/gitalk/gitalk/, https://github.com/emn178/js-md5/
  # Example:
  # gitalk_js: //cdn.jsdelivr.net/npm/gitalk@latest/dist/gitalk.min.js
  # gitalk_css: //cdn.jsdelivr.net/npm/gitalk@latest/dist/gitalk.css
  # md5: //cdn.jsdelivr.net/npm/js-md5@latest/src/md5.min.js
673 674 675
  gitalk_js:
  gitalk_css:
  gitalk_md5:
676 677 678 679 680 681 682 683

  # gitment & js-md5
  # Using version: latest & latest
  # See: https://github.com/gitalk/gitalk/, https://github.com/emn178/js-md5/
  # Example:
  # gitment_js: //cdn.jsdelivr.net/npm/gitment/dist/gitment.browser.min.js
  # gitment_css: //cdn.jsdelivr.net/npm/gitment/style/default.min.css
  # md5: //cdn.jsdelivr.net/npm/js-md5@latest/src/md5.min.js
684 685 686
  gitment_js:
  gitment_css:
  gitment_md5:
687 688 689 690 691 692 693

  # valine & leancloud-storage
  # Using version: latest & latest
  # See: https://github.com/xCss/Valine/, https://www.npmjs.com/package/leancloud-storage/
  # Example:
  # valine: //cdn.jsdelivr.net/npm/valine@latest/dist/Valine.min.js
  # leancloud_storage: //cdn.jsdelivr.net/npm/leancloud-storage@latest/dist/av-min.js
694 695
  valine:
  leancloud_storage:
696 697 698 699 700 701

  # busuanzi
  # Using version: latest
  # See: https://busuanzi.ibruce.info/
  # Example:
  # busuanzi: //cdn.jsdelivr.net/gh/sukkaw/busuanzi@latest/bsz.pure.mini.js
702 703
  busuanzi:

704 705 706 707 708
  # Using version: 2.1.1
  # See: https://busuanzi.ibruce.info/
  # Example:
  # instantsearch_js: //cdn.jsdelivr.net/npm/instantsearch.js@2.1.1/dist/instantsearch.min.js
  # instantsearch_css: //cdn.jsdelivr.net/npm/instantsearch.js@2.1.1/dist/instantsearch.min.css
709 710
  instantsearch_js:
  instantsearch_css:
711 712 713 714 715

  # Using version: latest
  # See: https://github.com/hustcc/ribbon.js
  # Example:
  # canvas_ribbon: //cdn.jsdelivr.net/npm/ribbon.js@latest/dist/ribbon.min.js
716 717
  canvas_ribbon:

718 719 720 721
  # Using version: latest
  # See: https://github.com/hustcc/canvas-nest.js
  # Example:
  # canvas_nest: //cdn.jsdelivr.net/gh/theme-next/theme-next-canvas-nest@latest/canvas-nest.min.js
722
  canvas_nest:
723 724 725 726 727 728

  # Using version: 3.5.7
  # See: https://www.fancyapps.com/fancybox/3/
  # Example:
  # fancybox_js: //cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js
  # fancybox_css: //cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css
729 730
  fancybox_js:
  fancybox_css:
731 732 733 734 735

  # Using version: 4.2.2
  # See: https://masonry.desandro.com/
  # Example:
  # masonry: //cdn.jsdelivr.net/npm/masonry-layout@4.2.2/dist/masonry.pkgd.min.js
736
  masonry:
737 738 739 740 741

  # Using version: 2.0.0-rc.2
  # See: https://github.com/tuupola/lazyload/
  # Example:
  # lazyload: //cdn.jsdelivr.net/npm/lazyload@2.0.0-rc.2/lazyload.min.js
742
  lazyload:
EvanOne(文一)'s avatar
EvanOne(文一) 已提交
743 744 745 746 747 748

  # # Using version: latest
  # See: https://github.com/GoogleChromeLabs/quicklink/
  # Example:
  # quicklink: //cdn.jsdelivr.net/npm/quicklink@latest/dist/quicklink.umd.js
  quicklink: