8000 Update browser usage by obedparla · Pull Request #755 · twigjs/twig.js · GitHub
[go: up one dir, main page]

Skip to content

Update browser usage #755

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update browser usage
After trying to use Twig on the browser with `twig({...})` and getting ` ReferenceError: twig is not defined` I realized I needed to do `Twig.twig({...})` instead. 

If this not always the case let me know so I can improve the documentation in this regard.
  • Loading branch information
obedparla authored Nov 1, 2020
commit bd9f91ac060e7a11ca2e85b25586e7338f4f5a63
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ A bower package is available from [philsbury](https://github.com/philsbury/twigj
Include twig.js or twig.min.js in your page, then:

```js
var template = twig({
var template = Twig.twig({
data: 'The {{ baked_good }} is a lie.'
});

Expand Down
0