_config.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # NOTE:
  2. # some of the settings in this file get overwritten in later config
  3. # files like _prod.yml, _dev.yml, and _defaults.yml
  4. # =======
  5. # Site settings
  6. # =======
  7. title: Apache Cordova
  8. title_suffix: "Apache Cordova"
  9. url: "https://cordova.apache.org" # the base hostname & protocol
  10. baseurl: "" # the subpath of the site, e.g. /blog; NOTE: no trailing slash
  11. rss_path: /feed.xml
  12. description: >
  13. Apache Cordova is a set of device APIs that allow a web mobile app
  14. developer to access native device function from JavaScript.
  15. excerpt_separator: <!--more-->
  16. # the version to which /latest/ points
  17. # NOTE:
  18. # this value gets overwritten in _version.yml, which is a generated file
  19. latest_docs_version: dev
  20. # the docs version that is shown by default when clicking on docs links on the site
  21. default_linked_docs_version: latest
  22. # the language that serves as the source for the translations
  23. src_language: en
  24. # NOTE:
  25. # this value _might_ get overwritten on some pages;
  26. # see _defaults.yml, which is a generated file
  27. language: en
  28. # NOTE:
  29. # this value gets overwritten in _defaults.yml, which is a generated file
  30. defaults:
  31. # =======
  32. # Build settings
  33. # =======
  34. source: www
  35. destination: build-dev
  36. # don't erase these files in the output directory
  37. keep_files: [".git", ".svn", "wiki-images", "images", "downloads"]
  38. lsi: false # don't produce an index for related posts
  39. safe: false # disables plugins
  40. markdown: redcarpet
  41. redcarpet:
  42. extensions:
  43. # this enables code blocks denoted by backticks, like in GFM
  44. # NOTE:
  45. # this is turned on by default by Jekyll, but is still
  46. # specified explicitly here in case the defaults change
  47. - fenced_code_blocks
  48. # this allows code blocks and HTML blocks to
  49. # not have a leading or trailing newline
  50. - lax_spacing
  51. # allows tables
  52. - tables
  53. # surrounds highlighted text with <mark>s
  54. - highlight
  55. highlighter: rouge
  56. kramdown:
  57. input: GFM
  58. hard_wrap: false
  59. syntax_highlighter: rouge
  60. # exclude these directories from the build
  61. exclude:
  62. - static/css-src
  63. algolia_api_key: "0a916ab198bd93d031aa70611271e42e"