_config.yml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # Site settings
  2. permalink: /blog/:year/:month/:day/:title.html
  3. title: RocksDB
  4. tagline: A persistent key-value store for fast storage environments
  5. description: >
  6. RocksDB is an embeddable persistent key-value store for fast storage.
  7. fbappid: "1615782811974223"
  8. gacode: "UA-49459723-1"
  9. # baseurl determines the subpath of your site. For example if you're using an
  10. # organisation.github.io/reponame/ basic site URL, then baseurl would be set
  11. # as "/reponame" but leave blank if you have a top-level domain URL as it is
  12. # now set to "" by default as discussed in:
  13. # http://jekyllrb.com/news/2016/10/06/jekyll-3-3-is-here/
  14. baseurl: ""
  15. # the base hostname & protocol for your site
  16. # If baseurl is set, then the absolute url for your site would be url/baseurl
  17. # This was also be set to the right thing automatically for local development
  18. # https://github.com/blog/2277-what-s-new-in-github-pages-with-jekyll-3-3
  19. # http://jekyllrb.com/news/2016/10/06/jekyll-3-3-is-here/
  20. url: "http://rocksdb.org"
  21. # Note: There are new filters in Jekyll 3.3 to help with absolute and relative urls
  22. # absolute_url
  23. # relative_url
  24. # So you will see these used throughout the Jekyll code in this template.
  25. # no more need for | prepend: site.url | prepend: site.baseurl
  26. # http://jekyllrb.com/news/2016/10/06/jekyll-3-3-is-here/
  27. #https://github.com/blog/2277-what-s-new-in-github-pages-with-jekyll-3-3
  28. # The GitHub repo for your project
  29. ghrepo: "facebook/rocksdb"
  30. # Use these color settings to determine your colour scheme for the site.
  31. color:
  32. # primary should be a vivid color that reflects the project's brand
  33. primary: "#2a2a2a"
  34. # secondary should be a subtle light or dark color used on page backgrounds
  35. secondary: "#f9f9f9"
  36. # Use the following to specify whether the previous two colours are 'light'
  37. # or 'dark' and therefore what colors can be overlaid on them
  38. primary-overlay: "dark"
  39. secondary-overlay: "light"
  40. #Uncomment this if you want to enable Algolia doc search with your own values
  41. #searchconfig:
  42. # apikey: ""
  43. # indexname: ""
  44. # Blog posts are builtin to Jekyll by default, with the `_posts` directory.
  45. # Here you can specify other types of documentation. The names here are `docs`
  46. # and `top-level`. This means their content will be in `_docs` and `_top-level`.
  47. # The permalink format is also given.
  48. # http://ben.balter.com/2015/02/20/jekyll-collections/
  49. collections:
  50. docs:
  51. output: true
  52. permalink: /docs/:name/
  53. top-level:
  54. output: true
  55. permalink: :name.html
  56. # DO NOT ADJUST BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE CHANGING
  57. markdown: kramdown
  58. kramdown:
  59. input: GFM
  60. syntax_highlighter: rouge
  61. syntax_highlighter_opts:
  62. css_class: 'rougeHighlight'
  63. span:
  64. line_numbers: false
  65. block:
  66. line_numbers: true
  67. start_line: 1
  68. sass:
  69. style: :compressed
  70. redcarpet:
  71. extensions: [with_toc_data]
  72. gems:
  73. - jekyll-redirect-from