Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
tommy351 committed Aug 29, 2013
2 parents e065c06 + 81dade8 commit 277b6b4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
REPORTER ?= dot

build: install css
build: css

test:
node test --reporter $(REPORTER)
Expand Down
2 changes: 1 addition & 1 deletion assets/themes/light
Submodule light updated from b5058e to a94f5e
2 changes: 1 addition & 1 deletion lib/plugins/tag/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ tag.register('anchor', link);

tag.register('pullquote', require('./pullquote'), true);

tag.register('raw', require('./raw'), true);
tag.register('rawblock', require('./raw'), true);

tag.register('vimeo', require('./vimeo'));

Expand Down
2 changes: 2 additions & 0 deletions lib/post/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ module.exports = function(source, data, callback){
// Loads tag plugins
if (!swigInit) swig.init({tags: extend.tag.list()});

swigInit = true;

/**
* Replaces <escape>content</escape> in raw content with `<notextile>cache number</notextile>`,
* and adds indent before the content to avoid markdown render error.
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "hexo",
"version": "2.0.5",
"version": "2.0.6",
"description": "A fast, simple & powerful blog framework, powered by Node.js.",
"preferGlobal": true,
"bin": {
"hexo": "./bin/hexo"
},
"scripts": {
"prepublish": "make build",
"test": "node test"
},
"directories": {
Expand Down

0 comments on commit 277b6b4

Please sign in to comment.