Skip to content
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

Adding interpolation documentation #14

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
14 changes: 14 additions & 0 deletions src/language/interpolation.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,20 @@ p.

You could accomplish the same thing by writing an HTML tag inline with your Pug, but then what's the point of writing the Pug? Wrap an inline Pug tag declaration in `#[` and `]` and it'll be evaluated and buffered into the content of its containing tag.

Note that a tag is not required for interpolation to work. If your variable is valid html or even a block of valid html, it can be inserted like so:

```pug-preview
- var paragraph = "<p>This is a paragraph.</p>";
div
!= paragraph


- var metaTags = '<meta property="og:title" content="My app"/><meta property="og:description" content="An awesome app"/>';
head
meta(charSet="UTF-8")
!= metaTags
```

### Whitespace Control

The tag interpolation syntax is especially useful for inline tags, where whitespace before and after the tag is significant. By default, however, Pug removes all spaces before and after tags. Check out the following example:
Expand Down