_config.yml 3.1 KB

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