Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PEM-- committed Jul 14, 2014
1 parent fbdb54d commit 11035f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
![Jade previewer](https://raw.githubusercontent.com/PEM--/jade-compile/master/assets/capture.png)

## Available settings
* Pretty: `true` by default for prettyfying the generated HTML code.
* Compile on save: `true` by default for refreshing preview each time the Jade code is changed.
* Focus editor after compile: `true`by default for setting back the focus on the Jade code when preview is done.
* Pretty: `true` by default, used for prettyfying the generated HTML code.
* Compile on save: `false` by default, used for refreshing preview each time the Jade code is changed.
* Focus editor after compile: `true` by default, used for setting back the focus on the Jade code when preview is done.

## Additional informations
* Some additional information on my blog site :eyeglasses:: [Jade within Atom.io](http://pem-musing.blogspot.fr/2014/07/jade-within-atomio-fasten-your-html-and.html).
Expand Down
4 changes: 2 additions & 2 deletions lib/jade-compile.coffee
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
url = require 'url'
url = require 'url'
querystring = require 'querystring'
JadeCompileView = require './jade-compile-view'

module.exports =
# Define default configuration
configDefaults:
pretty: true
compileOnSave: true
compileOnSave: false
focusEditorAfterCompile: true

# Public: Activate the plugin.
Expand Down

0 comments on commit 11035f3

Please sign in to comment.