jekyll-vrml 2.0.1 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/jekyll-vrml/version.rb +1 -1
- data/lib/jekyll-vrml.rb +1 -1
- data/package.json +2 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 924e971012d0661b48960d3be9c5bfe96e66e697497e745372f47b67dee42d43
|
4
|
+
data.tar.gz: 4ddfdb112797f116cf932d1d32a67ea795bde33d595c758a68f98bf044917964
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fa2fbfcb727dbc05838ce8ddcf4b2409ae26e5fdf8950a0674b3ec953c491d014d85bf430146148d3c5752e2d6cb8e575d446cd985a64113e7231cd26cda06d
|
7
|
+
data.tar.gz: db1a4bd00aec985ced16378298cf217f66661c9c57bc3fddb994d5524aea182cbab70b72ebacf2d20f039b572e5d01f225b79252c141b8e70a5e156758c4bac2
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# jekyll-vrml
|
2
2
|
|
3
|
-
Adds support for VRML syntax highlighting to Jekyll.
|
3
|
+
Adds support for VRML syntax highlighting to Jekyll. This allows developers to easily integrate and display X3D content within their Jekyll-powered websites.
|
4
4
|
|
5
5
|
## Usage
|
6
6
|
|
@@ -8,11 +8,11 @@ Add the following lines to your Gemfile:
|
|
8
8
|
|
9
9
|
```ruby
|
10
10
|
group :jekyll_plugins do
|
11
|
-
gem 'jekyll-vrml', '~> 2.0'
|
11
|
+
gem 'jekyll-vrml', '~> 2.0', '>= 2.0.3'
|
12
12
|
end
|
13
13
|
```
|
14
14
|
|
15
|
-
After this run `bundle install`. Now you can highlight your source code in Markdown as VRML:
|
15
|
+
After this, run `bundle install; bundle update`. Now you can highlight your source code in Markdown as VRML:
|
16
16
|
|
17
17
|
``````md
|
18
18
|
```vrml
|
data/lib/jekyll-vrml/version.rb
CHANGED
data/lib/jekyll-vrml.rb
CHANGED
@@ -6,7 +6,7 @@ require "jekyll"
|
|
6
6
|
|
7
7
|
# This "hook" is executed right before the site"s pages are rendered
|
8
8
|
Jekyll::Hooks.register :site, :pre_render do |site|
|
9
|
-
puts "Adding VRML Markdown Lexer ..."
|
9
|
+
# puts "Adding VRML Markdown Lexer ..."
|
10
10
|
require "rouge"
|
11
11
|
|
12
12
|
# This class defines the VRML lexer which is used to highlight "vrml" code snippets during render-time
|
data/package.json
CHANGED
metadata
CHANGED
@@ -1,16 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-vrml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Holger Seelig
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: Adds support for VRML syntax highlighting to Jekyll.
|
13
|
+
description: Adds support for VRML syntax highlighting to Jekyll. This allows developers
|
14
|
+
to easily integrate and display X3D content within their Jekyll-powered websites.
|
14
15
|
email:
|
15
16
|
- holger.seelig@gmail.com
|
16
17
|
executables: []
|