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

[5.x] Add documention for v5.0.0 release #131

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions src/.vuepress/styles/index.styl
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,14 @@ $contentBorderRadius = 0.5rem
h1, h2, h3, h4, h5, h6 {
// Makes the header end before a float-right div
display: flex;
flex-wrap: wrap;
}
h1, h2, h3, h4, h5, h6 {
> .version {
font-weight: normal;
font-size: 70%;
flex-basis: 100%;
}
}

$buttonLinkBgColor = darken($baseColor, 10%);
Expand Down
10 changes: 10 additions & 0 deletions src/api-reference/utilities.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,16 @@ Determines if an object is an array.

Determines if an object is a function.

### `Handlebars.Utils.isMap(obj)` <small class="version">(since v5.0.0)</small>

Determines if an object is a
[Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map).

### `Handlebars.Utils.isSet(obj)` <small class="version">(since v5.0.0)</small>

Determines if an object is a
[Set](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set).

### `Handlebars.log(level, message)`

Logger used by the `log` helper.
Expand Down
Loading