Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen committed Mar 3, 2024
1 parent db6c998 commit cbd126f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ applications**.
## Installation

Webview is published to [jsr.io](https://jsr.io/@webview/webview) and
[deno.land](https://deno.land/x/webview). The recommended way to use it is to use
JSR:
[deno.land](https://deno.land/x/webview). The recommended way to use it is to
use JSR:

```bash
deno add @webview/webview
Expand Down
10 changes: 5 additions & 5 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
/**
* Webview is a tiny cross-platform library to make web-based GUIs for desktop
* applications.
*
*
* @example
* ```
* import { Webview } from "@webview/webview";
*
*
* const html = `
* <html>
* <body>
* <h1>Hello from deno v${Deno.version.deno}</h1>
* </body>
* </html>
* `;
*
*
* const webview = new Webview();
*
*
* webview.navigate(`data:text/html,${encodeURIComponent(html)}`);
* webview.run();
* ```
*
*
* @module
*/

Expand Down

0 comments on commit cbd126f

Please sign in to comment.