jekyll-vitepress-theme
Ruby deserves beautiful documentation. Jekyll VitePress Theme brings VitePress-level polish to Jekyll.
File Explorer
- _heavy.yml
- _lint.yml
- docs.yml
- main.yml
- pr-fast.yml
- pr-heavy.yml
- release.yml
- FUNDING.yml
- customizing-styles.md
- deployment.md
- extending-behavior.md
- seo-and-discovery.md
- callouts-labels-buttons.md
- code-blocks.md
- custom-blocks.md
- markdown-extensions.md
- navigation-layout.md
- nested-sidebar-items.md
- search-and-outline.md
- navigation.yml
- sidebar.yml
- social_links.yml
- versions.yml
- doc_footer_end.html
- head_end.html
- layout_end.html
- alert.html
- copy_page_button.html
- doc_content.html
- doc_footer.html
- github_sponsor_button.html
- github_star_button.html
- head.html
- home.html
- link_attrs.html
- local_nav.html
- nav.html
- nav_menu_link.html
- nav_social_links.html
- rubygems_downloads_button.html
- search.html
- seo.html
- sidebar.html
- sidebar_items.html
- version_link.html
- vp_image.html
- configuration.md
- getting-started.md
- overview.md
- what-is-jekyll-vitepress-theme.md
- default.html
- home.html
- configuration-reference.md
- extensions-to-vitepress.md
- frontmatter-reference.md
- troubleshooting.md
- vitepress-parity.md
- vitepress-components.css
- vitepress-core.css
- vitepress-overrides.css
- vp-icons.css
- apple-touch-icon.png
- favicon-96x96.png
- favicon.ico
- site.webmanifest
- web-app-manifest-192x192.png
- web-app-manifest-512x512.png
- css.svg
- default.svg
- docker.svg
- env.svg
- go.svg
- html.svg
- java.svg
- javascript.svg
- json.svg
- kotlin.svg
- make.svg
- markdown.svg
- php.svg
- python.svg
- ruby.svg
- rust.svg
- shell.svg
- sql.svg
- text.svg
- toml.svg
- typescript.svg
- vue.svg
- xml.svg
- yaml-dark.svg
- yaml.svg
- getting-started-dark.png
- getting-started-light.png
- home-dark.png
- home-light.png
- bitbucket.svg
- bluesky.svg
- devdotto.svg
- discord.svg
- dribbble.svg
- facebook.svg
- github.svg
- gitlab.svg
- instagram.svg
- linkedin.svg
- mastodon.svg
- medium.svg
- npm.svg
- reddit.svg
- rss.svg
- slack.svg
- stackoverflow.svg
- telegram.svg
- twitch.svg
- twitter.svg
- x.svg
- youtube.svg
- jekyll-test-tube.svg
- more-than-vitepress.svg
- turbo-frame-swap.svg
- vitepress-logo-large.svg
- vitepress-logo-mini.svg
- vitepress-logo-official.svg
- logo.svg
- vitepress-theme.js
- turbo.js
- head_end.html
- hooks.rb
- llms.rb
- seo.rb
- version.rb
- jekyll-vitepress-theme.rb
- gh_pages_redirect.html
- generate_social_icons.cjs
- publish_gh_pages.sh
- seo_audit.rb
- smoke_test.sh
- version_manifest.rb
- navigation.yml
- sidebar.yml
- _config.yml
- guide.md
- index.md
- private.md
- copy_page_test.rb
- llms_test.rb
- rouge_styles_test.rb
- search_index_test.rb
- seo_integration_test.rb
- seo_test.rb
- sidebar_test.rb
- test_helper.rb
- version_label_test.rb
- version_manifest_test.rb
- .gitignore
- .markdownlint-cli2.jsonc
- .overcommit.yml
- .rubocop.yml
- _config.yml
- eslint.config.mjs
- Gemfile
- Gemfile.lock
- index.md
- jekyll-vitepress-theme.gemspec
- LICENSE
- package-lock.json
- package.json
- Rakefile
- README.md
- stylelint.config.cjs
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bundle
View Details ▼
bundle
Dependency manager for the Ruby programming language.
bundle install
Install all gems defined in the `Gemfile` expected in the working directory:
bundle exec {{command}} {{arguments}}
Execute a command in the context of the current bundle:
bundle update
Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`:
gem
View Details ▼
gem
A package manager for the Ruby programming language.
gem search {{regex}} {{[-a|--all]}}
Search for remote gem(s) and show all available versions:
gem install {{gem_name}}
Install the latest version of a gem:
gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}
Install a specific version of a gem:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
