https://github.com/create3000/jekyll-vrml
Adds support for VRML syntax highlighting to Jekyll. This allows developers to easily integrate and display X3D content within their Jekyll-powered websites.
https://github.com/create3000/jekyll-vrml
highlighter jekyll vrml x3d
Last synced: about 1 month ago
JSON representation
Adds support for VRML syntax highlighting to Jekyll. This allows developers to easily integrate and display X3D content within their Jekyll-powered websites.
- Host: GitHub
- URL: https://github.com/create3000/jekyll-vrml
- Owner: create3000
- License: mit
- Created: 2024-10-17T22:52:34.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-04-14T12:55:15.000Z (about 2 months ago)
- Last Synced: 2025-04-23T13:27:26.371Z (about 1 month ago)
- Topics: highlighter, jekyll, vrml, x3d
- Language: Ruby
- Homepage: https://rubygems.org/gems/jekyll-vrml
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
# jekyll-vrml
[](https://badge.fury.io/rb/jekyll-vrml)
Adds support for VRML syntax highlighting to Jekyll. This allows developers to easily integrate and display X3D content within their Jekyll-powered websites.
## Usage
Add the following lines to your `Gemfile`:
```ruby
group :jekyll_plugins do
gem 'jekyll-vrml', '~> 2.2'
end
```After this, run `bundle install; bundle update`.
In your `_config.yml` you need to specify that you want to use `rouge` as syntax highlighter.
```yml
kramdown:
syntax_highlighter: rouge
```Now you can highlight your source code in Markdown as VRML:
``````md
```vrml
#X3D V4.0 utf8PROFILE Interchange
Transform {
children Shape {
appearance Appearance {
material Material { }
}
geometry Box { }
}
}
```
``````## See Also
* [jekyll-x3d](https://github.com/create3000/jekyll-x3d)
* [X_ITE X3D Browser](https://create3000.github.io/x_ite/)
* [web3d.org](https://www.web3d.org)