Skip to content

Commit

Permalink
🔖 v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
motss committed May 22, 2019
1 parent 3813c46 commit 694f52e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion deep_clone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

```ts
/** Import from GH via `denopkg` */
import { deepClone } from "https://denopkg.com/motss/deno_mod@v0.4.1/deep_clone/mod.ts";
import { deepClone } from "https://denopkg.com/motss/deno_mod@v0.5.0/deep_clone/mod.ts";

(async () => {
const simpleObject = {
Expand Down
8 changes: 4 additions & 4 deletions lit_ntml/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
## Table of contents <!-- omit in toc -->

- [Usage](#usage)
- [html()](#html)
- [htmlFragment()](#htmlfragment)
- [html()](#html)
- [htmlFragment()](#htmlfragment)
- [API Reference](#api-reference)
- [html()](#html-1)
- [htmlFragment()](#htmlfragment-1)
Expand All @@ -25,7 +25,7 @@
#### html()

```ts
import { html } from "https://denopkg.com/motss/deno_mod@v0.4.1/lit_ntml/mod.ts";
import { html } from "https://denopkg.com/motss/deno_mod@v0.5.0/lit_ntml/mod.ts";

const peopleList = ["Cash Black", "Vict Fisherman"];
const syncTask = () => `<h1>Hello, World!</h1>`;
Expand All @@ -40,7 +40,7 @@ await html`${syncTask}${asyncLiteral}${asyncListTask}`; /** <!DOCTYPE html><html
#### htmlFragment()

```ts
import { htmlFragment as html } from "https://denopkg.com/motss/deno_mod@v0.4.1/lit_ntml/mod.ts";
import { htmlFragment as html } from "https://denopkg.com/motss/deno_mod@v0.5.0/lit_ntml/mod.ts";

const syncTask = () => `<h1>Hello, World!</h1>`;
const externalStyleLiteral = `<style>body { margin: 0; padding: 0; box-sizing: border-box; }</style>`;
Expand Down
2 changes: 1 addition & 1 deletion normalize_diacritics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

```ts
/** Import from GH via `denopkg` */
import { normalize } from "https://denopkg.com/motss/deno_mod@v0.4.1/normalize_diacritics/mod.ts";
import { normalize } from "https://denopkg.com/motss/deno_mod@v0.5.0/normalize_diacritics/mod.ts";

(async () => {
const str = "söme stüff with áccènts";
Expand Down

0 comments on commit 694f52e

Please sign in to comment.