aboutsummaryrefslogtreecommitdiff
path: root/plugins (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-09-26Makes img tag more flexible, adds support for relative paths. Includes pull ↵Frederic Hemberger1-22/+23
request #145, fixes #161
2011-09-21Updated regex to select less content on postsFrederic Hemberger1-1/+1
2011-09-21Adds first 150 chars of content as meta description, if no page.description ↵Frederic Hemberger1-0/+7
specified. Fixes #162
2011-09-18Fixes styling of <figure> code headerFrederic Hemberger2-4/+4
2011-09-18Fixes HTML validation issues with code highlightingFrederic Hemberger2-6/+6
2011-09-18Aligns naming of .pygments-cache, .gist-cache and .sass-cacheFrederic Hemberger2-2/+2
2011-09-07improved backtick codeblock's handling of the raw optionBrandon Mathis1-4/+5
2011-09-071. Vastly improved backtick code blocks and added support for TextileBrandon Mathis6-54/+106
2. Refactored Octopress filters into Liquid filters and pre/post render filters (using post_filters plugin) 3. Added methods to raw plugin to prevent Markdown and Textile from parsing blocks 4. Updated render partial to invoke the pre_render method of post_filters 5. Moved Rubypants filter out of default.html into Octopress post_render filters 6. Added raw's safe_wrapper method to codeblock and include_code filters
2011-09-07Added {% raw %} liquid block, allowing for blocks of code which are not ↵Brandon Mathis1-0/+24
parsed by Liquid
2011-09-05Downcased category urlsBrandon Mathis1-2/+2
2011-09-05Improved support for non Latin characters in category names. Fixes #128Chun-wei Kuo1-3/+4
2011-09-04Added post_filters pluginTed Kulp1-0/+176
Plugins that extend PostFilter will get three additional methods: pre_render, post_render and post_write. These will be called when every page or post is processed and allows for the plugin to modify the post/page object directly to modify the output beyond what can be done with just markup.
2011-09-04Improved support for non Latin characters in category names. Fixes #128fhemberger1-3/+4
2011-09-03reverted back to \W in category_generator. Tracking on #128Brandon Mathis1-2/+2
2011-09-03Improved support for non Latin characters in category names. Fixes #128Brandon Mathis1-2/+2
2011-08-25sitemap_generator dies if public dir doesn't exist yetmasukomi1-0/+4
this tests for the presence of the public dir and creates it if needed. This situation can arise in a new install.
2011-08-21include_code now defaults to relative urls for easy testing on a development ↵Brandon Mathis1-1/+1
server
2011-08-21improved lang:language for codeblock and include code. It no longer strips ↵Brandon Mathis2-4/+4
out surrounding whitespace.
2011-08-20added option to force syntax highlighting language, example: {% include_code ↵Brandon Mathis2-2/+11
file lang:ruby %}. Fixes #108
2011-08-20centralized pygments aliases into pygments_code.rb. Added alias for .ru ↵Brandon Mathis3-6/+4
(ruby), which sort of fixes #108
2011-08-20now only excerpted articles show the "read on" link. Also the text for that ↵Brandon Mathis1-0/+5
link can be set in the _config.yml
2011-08-18reordered arguments in paginationBrandon Mathis1-2/+2
2011-08-16Codeblock regex improved to better detect extensions fixes #96, added ↵Brandon Mathis3-13/+21
support for tableizing non highlighted code blocks from liquid codeblock tag and backtick code blocks
2011-08-16Added support for pagination with a blog index in any directory (helps with ↵Brandon Mathis1-0/+121
landing pages). Added configuration for pagination directory base
2011-08-16expand_urls now correctly matches urls pointing to the root directory, ↵Brandon Mathis1-1/+1
allowing / to be replaced with /subdir/ if site is configured with a different root directory
2011-08-11Fix extra subdirectories appearing in category links and atom.xml link.Brigham Brown1-2/+1
2011-08-01added yml alias for yaml code highlightingBrandon Mathis2-0/+2
2011-08-01added a raw option to render_partial. Now you can import partials without ↵Brandon Mathis1-5/+14
having them parsed by the Liquid template parser
2011-08-01code_block and inlcude_code no longer needlessly render through the Liquid ↵Brandon Mathis2-8/+0
template parser
2011-08-01Backtick codeblocks now correctly replace &amp; with & and Textile support ↵Brandon Mathis1-8/+3
for back tick code blocks has been removed. It never really worked. Textile makes me sad.
2011-07-30fixed empty line stripping from codeblocksBrandon Mathis1-1/+1
2011-07-29added support for width and height to image tag pluginBrandon Mathis1-5/+13
2011-07-29include_code is now more forgiving, stripping leading forward slashes from ↵Brandon Mathis1-1/+1
the code_dir config
2011-07-28Add support using github backtick code blocks without supplying a languageBrandon Mathis1-7/+19
2011-07-28improved replacement filters for textile markup on github backtick ↵Brandon Mathis1-1/+2
codeblocks, added comment to show regular HTML support
2011-07-28updated Github style backtick filter to support textile, markdown and htmlBrandon Mathis1-1/+15
2011-07-28allow select and order of sidebar components to be configurable in jekyll's ↵Jason Woodward1-0/+58
_config.yml
2011-07-28making textile and code blocks work nice togetherAndreas Arnold1-0/+2
2011-07-27fixed bug where multiple github style codeblcoks were getting eatenBrandon Mathis1-1/+1
2011-07-26fixed bug in backtick_codeblock where indentations were being ↵Brandon Mathis1-1/+2
unintentionally removed
2011-07-26added support for github style backtick code blocksBrandon Mathis1-0/+14
2011-07-26added support for pygments.rb removing dependency on pygments, added support ↵Brandon Mathis4-33/+42
for caching highlighted code from pygments.rb and added default line numbering. Javascript auto line numbering now only occurs for embedded gists
2011-07-25updated syntax highlighting support for perl and objective c in code_block ↵Brandon Mathis2-2/+6
and include_code plugins
2011-07-23added video tag pluginBrandon Mathis1-0/+47
2011-07-23fixed typos and cleand up the image tag pluginBrandon Mathis1-2/+2
2011-07-23removed some unnecessary steps from the category_generator plugin to avoid ↵Brandon Mathis1-26/+0
confusion
2011-07-23fixed misspelling of exerpt to excerpt for in the Octopress filtersBrandon Mathis1-1/+1
2011-07-231. Added image tag pluginBrandon Mathis3-69/+41
2. Removed figure tag plugin 3. Renamed custom_filters to octopress_filters 4. Added styles to support new image tag plugin
2011-07-22fixed error in pullquote pluginBrandon Mathis1-1/+1
2011-07-22blockquote plugin now allows for source attribution with out a link, see docsBrandon Mathis1-8/+17