diff --git a/plugins/code_block.rb b/plugins/code_block.rb index 27c74bb..09024ab 100644 --- a/plugins/code_block.rb +++ b/plugins/code_block.rb @@ -1,6 +1,6 @@ # Title: Simple Code Blocks for Jekyll # Author: Brandon Mathis http://brandonmathis.com -# Description: Write codeblocks with semantic HTML5
and elements and optional syntax highlighting — all with a simple, intuitive interface. +# Description: Write codeblocks with semantic HTML5
and
elements and optional syntax highlighting — all with a simple, intuitive interface. # # Syntax: # {% codeblock [title] [url] [link text] %} @@ -25,7 +25,7 @@ # Output: # #
-# Got pain? painrelief.sh Download it! +#
Got pain? painrelief.sh Download it! #

 # -- nicely escaped highlighted code --
 # 
diff --git a/plugins/include_code.rb b/plugins/include_code.rb index 692e524..46593ac 100644 --- a/plugins/include_code.rb +++ b/plugins/include_code.rb @@ -10,14 +10,14 @@ # # This will import test.js from source/downloads/code/javascripts/test.js # and output the contents in a syntax highlighted code block inside a figure, -# with a figtitle listing the file name and download link +# with a figcaption listing the file name and download link # # Example 2: -# You can also include an optional title for the +# You can also include an optional title for the
# # {% include_code javascripts/test.js Example 2 %} # -# will output a figtitle with the title: Example 2 (test.js) +# will output a figcaption with the title: Example 2 (test.js) # require './plugins/pygments_code'