Merge pull request #824 from liangsun/patch-1

To support url without domain name like /path/file
source
Brandon Mathis 2012-12-19 21:56:03 -08:00
commit c9f820f3ef
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ require './plugins/pygments_code'
module BacktickCodeBlock
include HighlightCode
AllOptions = /([^\s]+)\s+(.+?)(https?:\/\/\S+)\s*(.+)?/i
AllOptions = /([^\s]+)\s+(.+?)(https?:\/\/\S+|\/\S+)\s*(.+)?/i
LangCaption = /([^\s]+)\s*(.+)?/i
def render_code_block(input)
@options = nil