Skip to content
This repository has been archived by the owner on Sep 6, 2022. It is now read-only.

Commit

Permalink
Merge pull request #136 from KristerV/patch-1
Browse files Browse the repository at this point in the history
Add mention about bug mentioned in #83
  • Loading branch information
mquandalle committed May 16, 2015
2 parents f5002f1 + 462b4dd commit 4f8665a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ the [Jade](http://jade-lang.com/) template engine as a Spacebars alternative.
Spacebars and Jade packages can coexist, Spacebars will continue to compile
files ending with `.html` and Jade will take care of those ending with `.jade`.

## Table of Contents

* [Installation](#installation)
* [Examples](#examples)
* [Usage](#usage)
* [Templates](#templates)
* [HTML Tag attributes](#html-tag-attributes)
* [Components](#components)
* [Additional features](#additional-features)
* [else if](#else-if)
* [Unwrapped templates](#unwrapped-templates)
* [Anonymous helper](#anonymous-helper)
* [Contributing](#contributing)
* [Implementation](#implementation)
* [License](#license)
* [Tests](#tests)
* [Tips](#tips)
* [Known bugs](#known-bugs)
* [Using Jade in a package](#using-jade-in-a-package)

## Installation

Meteor-jade is installable from atmosphere, the meteor package system:
Expand Down Expand Up @@ -241,3 +261,15 @@ If you want to buy me a beer, I proudly accept bitcoin tips:
[1Jade7Fscsx2bF13iFVVFvcSUhe7eLJgSy][blockchain]

[blockchain]: https://blockchain.info/address/1Jade7Fscsx2bF13iFVVFvcSUhe7eLJgSy

## Known bugs

### Using Jade in a package

When using Jade in a package you need to lock the version to the [latest version](https://github.com/mquandalle/meteor-jade/blob/master/packages/jade/package.js#L3) manually. See [issue #83](https://github.com/mquandalle/meteor-jade/issues/83).
```javascript
api.use([
"templating",
"mquandalle:[email protected]"
], "client");
```

0 comments on commit 4f8665a

Please sign in to comment.