Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

_config.yml 3.9 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
  1. timezone: Europe/Berlin
  2. future: false
  3. # Set baseurl to the base path of the site eg "/mytalk"
  4. # baseurl: "/github-slideshow"
  5. # The allowed values are 'rouge', 'pygments' or null.
  6. highlighter: rouge
  7. # markdown - Valid options are [ maruku | rdiscount | kramdown | redcarpet ]
  8. markdown: kramdown
  9. lsi: false
  10. permalink: "/:title"
  11. kramdown:
  12. ## for german: "sbquo,lsquo,bdquo,ldquo"
  13. smart_quotes: lsquo,rsquo,ldquo,rdquo
  14. plugins:
  15. - jemoji
  16. ## personalize your slide show
  17. title: github-slideshow
  18. author: GitHubTeacher
  19. description: A fun activity for learning Git and GitHub.
  20. sass:
  21. style: :compressed
  22. ## solarized variant (dark/light)
  23. solarized:
  24. theme: dark
  25. slideNumber:
  26. # Slide number formatting can be configured using these variables:
  27. # "h.v": horizontal . vertical slide number (default)
  28. # "h/v": horizontal / vertical slide number
  29. # "c": flattened slide number
  30. # "c/t": flattened slide number / total slides
  31. # "none": dont't show slide numbers
  32. format: "c/t"
  33. ## Reveal.initialize
  34. ## At the end of your page Jekyll initializes reveal by running the following code. Note that all config values are optional and will default as specified below.
  35. ## Note that the new default vertical centering option will break compatibility with slides that were using transitions with backgrounds ("cube" and "page"). To restore the previous behavior, set "center" to "false".
  36. reveal:
  37. ## Display controls in the bottom right corner
  38. controls: false
  39. ## Display a presentation progress bar
  40. progress: true
  41. ## Display the page number of the current slide
  42. #slideNumber: false
  43. ## Push each slide change to the browser history
  44. history: true
  45. ## Enable keyboard shortcuts for navigation
  46. keyboard: true
  47. ## Enable the slide overview mode
  48. overview: true
  49. ## Vertical centering of slides
  50. center: true
  51. ## Enables touch navigation on devices with touch input
  52. touch: true
  53. ## Loop the presentation
  54. loop: false
  55. ## Change the presentation direction to be RTL
  56. #rtl: false
  57. ## Turns fragments on and off globally
  58. fragments: true
  59. ## Flags if the presentation is running in an embedded mode
  60. ## i.e. contained within a limited portion of the screen
  61. #embedded: false
  62. ## Number of milliseconds between automatically proceeding to the
  63. ## next slide, disabled when set to 0, this value can be overwritten
  64. ## by using a data-autoslide attribute on your slides
  65. #autoSlide: 0
  66. ## Stop auto-sliding after user input
  67. #autoSlideStoppable: true
  68. ## Enable slide navigation via mouse wheel
  69. #mouseWheel: false
  70. ## Hides the address bar on mobile devices
  71. #hideAddressBar: true
  72. ## Opens links in an iframe preview overlay
  73. #previewLinks: false
  74. ## Transition style (default/cube/page/concave/zoom/linear/fade/none)
  75. transition: linear
  76. ## Transition speed (default/fast/slow)
  77. #transitionSpeed: default
  78. ## Transition style for full page slide backgrounds (default/none/slide/concave/convex/zoom)
  79. backgroundTransition: slide
  80. ## Number of slides away from the current that are visible
  81. #viewDistance: 3
  82. ## Parallax background image (e.g. "'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'")
  83. #parallaxBackgroundImage: ''
  84. ## Parallax background size (CSS syntax, e.g. "2100px 900px")
  85. #parallaxBackgroundSize: ''
  86. ## The "normal" size of the presentation, aspect ratio will be preserved
  87. ## when the presentation is scaled to fit different resolutions. Can be
  88. ## specified using percentage units.
  89. width: 1000
  90. height: 920
  91. ## Factor of the display size that should remain empty around the content
  92. margin: 0.1
  93. ## Bounds for smallest/largest possible scale to apply to content
  94. minScale: 0.2
  95. maxScale: 1.5
  96. exclude: [
  97. "Gemfile",
  98. "Gemfile.lock",
  99. "vendor",
  100. "reveal.js/test",
  101. "reveal.js/index.html",
  102. "reveal.js/README.md",
  103. "reveal.js/bower.json",
  104. "reveal.js/Gruntfile.js",
  105. "reveal.js/CONTRIBUTING.md",
  106. "reveal.js/LICENSE",
  107. "reveal.js/package.json"
  108. ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...