diff --git a/Dockerfile b/Dockerfile
index c98543e9b..1050434ce 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@ RUN apk --update add --no-cache \
jq
RUN npm upgrade -g npm
COPY --from=mikefarah/yq:4.52.4 /usr/bin/yq /usr/local/bin/yq
-ADD --chmod=775 https://dl.k8s.io/release/v1.35.1/bin/${TARGETPLATFORM}/kubectl /usr/local/bin/kubectl
+ADD --chmod=775 https://dl.k8s.io/release/v1.35.3/bin/${TARGETPLATFORM}/kubectl /usr/local/bin/kubectl
WORKDIR /cf-cli
COPY package.json yarn.lock check-version.js run-check-version.js /cf-cli/
RUN yarn install --prod --frozen-lockfile && \
diff --git a/docs/themes/docdock/layouts/partials/flex/body-beforecontent.html b/docs/themes/docdock/layouts/partials/flex/body-beforecontent.html
index 78e48d7be..563bb7f3f 100755
--- a/docs/themes/docdock/layouts/partials/flex/body-beforecontent.html
+++ b/docs/themes/docdock/layouts/partials/flex/body-beforecontent.html
@@ -54,7 +54,7 @@
-
+
+
+
+
+
diff --git a/docs/themes/docdock/static/revealjs/.codespellrc b/docs/themes/docdock/static/revealjs/.codespellrc
new file mode 100644
index 000000000..fcffc5332
--- /dev/null
+++ b/docs/themes/docdock/static/revealjs/.codespellrc
@@ -0,0 +1,8 @@
+[codespell]
+# Ref: https://github.com/codespell-project/codespell#using-a-config-file
+skip = .git*,node_modules,package-lock.json,*.css,.codespellrc,react
+check-hidden = true
+# Ignore super long lines -- must be minimized etc, acronyms
+# and some near hit variables
+ignore-regex = ^.{120,}|\b(currentY|FOM)\b
+# ignore-words-list =
diff --git a/docs/themes/docdock/static/revealjs/.gitignore b/docs/themes/docdock/static/revealjs/.gitignore
old mode 100755
new mode 100644
index e7b4f216a..492a41dae
--- a/docs/themes/docdock/static/revealjs/.gitignore
+++ b/docs/themes/docdock/static/revealjs/.gitignore
@@ -9,5 +9,8 @@ log/*.log
tmp/**
node_modules/
.sass-cache
-css/reveal.min.css
-js/reveal.min.js
\ No newline at end of file
+presentation
+presentation.zip
+dist/reveal.es5.js
+react/demo/dist
+react/dist/plugin
\ No newline at end of file
diff --git a/docs/themes/docdock/static/revealjs/.prettierignore b/docs/themes/docdock/static/revealjs/.prettierignore
new file mode 100644
index 000000000..06d0866e3
--- /dev/null
+++ b/docs/themes/docdock/static/revealjs/.prettierignore
@@ -0,0 +1,7 @@
+js/**/*.js
+plugin/**/*.js
+**/*.md
+test/**/*.html
+examples/**/*.md
+dist/**/*
+*.html
\ No newline at end of file
diff --git a/docs/themes/docdock/static/revealjs/.prettierrc b/docs/themes/docdock/static/revealjs/.prettierrc
new file mode 100644
index 000000000..f4f82ddb7
--- /dev/null
+++ b/docs/themes/docdock/static/revealjs/.prettierrc
@@ -0,0 +1,8 @@
+{
+ "useTabs": true,
+ "tabWidth": 2,
+ "trailingComma": "es5",
+ "printWidth": 100,
+ "singleQuote": true,
+ "bracketSameLine": false
+}
diff --git a/docs/themes/docdock/static/revealjs/.travis.yml b/docs/themes/docdock/static/revealjs/.travis.yml
deleted file mode 100755
index 264c6ecc2..000000000
--- a/docs/themes/docdock/static/revealjs/.travis.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-language: node_js
-node_js:
- - 4.1.1
-before_script:
- - npm install -g grunt-cli
\ No newline at end of file
diff --git a/docs/themes/docdock/static/revealjs/CONTRIBUTING.md b/docs/themes/docdock/static/revealjs/CONTRIBUTING.md
deleted file mode 100755
index c2091e88f..000000000
--- a/docs/themes/docdock/static/revealjs/CONTRIBUTING.md
+++ /dev/null
@@ -1,23 +0,0 @@
-## Contributing
-
-Please keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.
-
-
-### Personal Support
-If you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).
-
-
-### Bug Reports
-When reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.
-
-
-### Pull Requests
-- Should follow the coding style of the file you work in, most importantly:
- - Tabs to indent
- - Single-quoted strings
-- Should be made towards the **dev branch**
-- Should be submitted from a feature/topic branch (not your master)
-
-
-### Plugins
-Please do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines
diff --git a/docs/themes/docdock/static/revealjs/Gruntfile.js b/docs/themes/docdock/static/revealjs/Gruntfile.js
deleted file mode 100755
index b6ef63be3..000000000
--- a/docs/themes/docdock/static/revealjs/Gruntfile.js
+++ /dev/null
@@ -1,192 +0,0 @@
-/* global module:false */
-module.exports = function(grunt) {
- var port = grunt.option('port') || 8000;
- var root = grunt.option('root') || '.';
-
- if (!Array.isArray(root)) root = [root];
-
- // Project configuration
- grunt.initConfig({
- pkg: grunt.file.readJSON('package.json'),
- meta: {
- banner:
- '/*!\n' +
- ' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' +
- ' * http://revealjs.com\n' +
- ' * MIT licensed\n' +
- ' *\n' +
- ' * Copyright (C) 2017 Hakim El Hattab, http://hakim.se\n' +
- ' */'
- },
-
- qunit: {
- files: [ 'test/*.html' ]
- },
-
- uglify: {
- options: {
- banner: '<%= meta.banner %>\n',
- screwIE8: false
- },
- build: {
- src: 'js/reveal.js',
- dest: 'js/reveal.min.js'
- }
- },
-
- sass: {
- core: {
- src: 'css/reveal.scss',
- dest: 'css/reveal.css'
- },
- themes: {
- expand: true,
- cwd: 'css/theme/source',
- src: ['*.sass', '*.scss'],
- dest: 'css/theme',
- ext: '.css'
- }
- },
-
- autoprefixer: {
- core: {
- src: 'css/reveal.css'
- }
- },
-
- cssmin: {
- options: {
- compatibility: 'ie9'
- },
- compress: {
- src: 'css/reveal.css',
- dest: 'css/reveal.min.css'
- }
- },
-
- jshint: {
- options: {
- curly: false,
- eqeqeq: true,
- immed: true,
- esnext: true,
- latedef: 'nofunc',
- newcap: true,
- noarg: true,
- sub: true,
- undef: true,
- eqnull: true,
- browser: true,
- expr: true,
- globals: {
- head: false,
- module: false,
- console: false,
- unescape: false,
- define: false,
- exports: false
- }
- },
- files: [ 'Gruntfile.js', 'js/reveal.js' ]
- },
-
- connect: {
- server: {
- options: {
- port: port,
- base: root,
- livereload: true,
- open: true,
- useAvailablePort: true
- }
- }
- },
-
- zip: {
- bundle: {
- src: [
- 'index.html',
- 'css/**',
- 'js/**',
- 'lib/**',
- 'images/**',
- 'plugin/**',
- '**.md'
- ],
- dest: 'reveal-js-presentation.zip'
- }
- },
-
- watch: {
- js: {
- files: [ 'Gruntfile.js', 'js/reveal.js' ],
- tasks: 'js'
- },
- theme: {
- files: [
- 'css/theme/source/*.sass',
- 'css/theme/source/*.scss',
- 'css/theme/template/*.sass',
- 'css/theme/template/*.scss'
- ],
- tasks: 'css-themes'
- },
- css: {
- files: [ 'css/reveal.scss' ],
- tasks: 'css-core'
- },
- html: {
- files: root.map(path => path + '/*.html')
- },
- markdown: {
- files: root.map(path => path + '/*.md')
- },
- options: {
- livereload: true
- }
- },
-
- retire: {
- js: [ 'js/reveal.js', 'lib/js/*.js', 'plugin/**/*.js' ],
- node: [ '.' ]
- }
-
- });
-
- // Dependencies
- grunt.loadNpmTasks( 'grunt-contrib-connect' );
- grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
- grunt.loadNpmTasks( 'grunt-contrib-jshint' );
- grunt.loadNpmTasks( 'grunt-contrib-qunit' );
- grunt.loadNpmTasks( 'grunt-contrib-uglify' );
- grunt.loadNpmTasks( 'grunt-contrib-watch' );
- grunt.loadNpmTasks( 'grunt-autoprefixer' );
- grunt.loadNpmTasks( 'grunt-retire' );
- grunt.loadNpmTasks( 'grunt-sass' );
- grunt.loadNpmTasks( 'grunt-zip' );
-
- // Default task
- grunt.registerTask( 'default', [ 'css', 'js' ] );
-
- // JS task
- grunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );
-
- // Theme CSS
- grunt.registerTask( 'css-themes', [ 'sass:themes' ] );
-
- // Core framework CSS
- grunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );
-
- // All CSS
- grunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );
-
- // Package presentation to archive
- grunt.registerTask( 'package', [ 'default', 'zip' ] );
-
- // Serve presentation locally
- grunt.registerTask( 'serve', [ 'connect', 'watch' ] );
-
- // Run tests
- grunt.registerTask( 'test', [ 'jshint', 'qunit' ] );
-
-};
diff --git a/docs/themes/docdock/static/revealjs/LICENSE b/docs/themes/docdock/static/revealjs/LICENSE
old mode 100755
new mode 100644
index c3e6e5fd6..c512bcdc6
--- a/docs/themes/docdock/static/revealjs/LICENSE
+++ b/docs/themes/docdock/static/revealjs/LICENSE
@@ -1,4 +1,4 @@
-Copyright (C) 2017 Hakim El Hattab, http://hakim.se, and reveal.js contributors
+Copyright (C) 2011-2026 Hakim El Hattab, http://hakim.se, and reveal.js contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/docs/themes/docdock/static/revealjs/README.md b/docs/themes/docdock/static/revealjs/README.md
old mode 100755
new mode 100644
index 9d714728f..1f0bad7d3
--- a/docs/themes/docdock/static/revealjs/README.md
+++ b/docs/themes/docdock/static/revealjs/README.md
@@ -1,1238 +1,32 @@
-# reveal.js [](https://travis-ci.org/hakimel/reveal.js)
+
+
+
+
+
+
+
+