-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
3,123 additions
and
2,412 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ on: page_build | |
|
||
jobs: | ||
purge: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_includes/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"arrowParens": "always", | ||
"bracketSpacing": true, | ||
"htmlWhitespaceSensitivity": "css", | ||
"insertPragma": false, | ||
"bracketSameLine": false, | ||
"jsxSingleQuote": false, | ||
"printWidth": 80, | ||
"proseWrap": "always", | ||
"quoteProps": "as-needed", | ||
"requirePragma": false, | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "es5", | ||
"useTabs": false, | ||
"vueIndentScriptAndStyle": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,53 @@ | ||
name: WebAssembly | ||
|
||
include: [ | ||
.github | ||
] | ||
include: [.github] | ||
|
||
exclude: [ | ||
README.md, | ||
LICENSE, | ||
Gemfile, | ||
Gemfile.lock, | ||
design/LICENSE, | ||
design/Contributing.md, | ||
design/README.md, | ||
design/tools, | ||
design/JS.md, | ||
design/BinaryEncoding.md, | ||
design/TextFormat.md, | ||
design/Semantics.md, | ||
design/Nondeterminism.md, | ||
design/Rationale.md, | ||
design/MVP.md, | ||
design/Modules.md, | ||
design/FutureFeatures.md, | ||
design/FeatureTest.md, | ||
design/JITLibrary.md, | ||
design/DynamicLinking.md, | ||
design/CAndC++.md, | ||
docs, | ||
vendor | ||
] | ||
exclude: | ||
[ | ||
README.md, | ||
LICENSE, | ||
Gemfile, | ||
Gemfile.lock, | ||
design/LICENSE, | ||
design/Contributing.md, | ||
design/README.md, | ||
design/tools, | ||
design/JS.md, | ||
design/BinaryEncoding.md, | ||
design/TextFormat.md, | ||
design/Semantics.md, | ||
design/Nondeterminism.md, | ||
design/Rationale.md, | ||
design/MVP.md, | ||
design/Modules.md, | ||
design/FutureFeatures.md, | ||
design/FeatureTest.md, | ||
design/JITLibrary.md, | ||
design/DynamicLinking.md, | ||
design/CAndC++.md, | ||
docs, | ||
vendor, | ||
] | ||
|
||
destination: docs | ||
|
||
permalink: pretty | ||
|
||
defaults: | ||
- | ||
scope: | ||
path: "design" | ||
- scope: | ||
path: 'design' | ||
values: | ||
layout: "doc" | ||
type: "doc" | ||
- | ||
scope: | ||
path: "design/CodeOfConduct.md" | ||
layout: 'doc' | ||
type: 'doc' | ||
- scope: | ||
path: 'design/CodeOfConduct.md' | ||
values: | ||
layout: "community" | ||
type: "community" | ||
permalink: "/community/code-of-conduct/" | ||
- | ||
scope: | ||
path: "design/Events.md" | ||
layout: 'community' | ||
type: 'community' | ||
permalink: '/community/code-of-conduct/' | ||
- scope: | ||
path: 'design/Events.md' | ||
values: | ||
layout: "community" | ||
type: "community" | ||
permalink: "/community/events/" | ||
layout: 'community' | ||
type: 'community' | ||
permalink: '/community/events/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
</body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,42 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> | ||
<meta name="color-scheme" content="dark light"> | ||
<title>{% if page.url == "/" %}WebAssembly{% else %}{{ page.title }} - WebAssembly{% endif %}</title> | ||
<link rel="stylesheet" type="text/css" href="/css/custom.css"> | ||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> | ||
<link rel="icon" href="/favicon.ico" type="image/x-icon"> | ||
</head> | ||
<body> | ||
<header class="page-section"> | ||
<div class="container-narrow"> | ||
<a class="site-logo" href="/" title="WebAssembly"></a> | ||
<nav class="site-nav"> | ||
<a class="site-nav-item btn" href="/">Overview</a> | ||
<a class="site-nav-item btn" href="/getting-started/developers-guide/">Getting Started</a> | ||
<a class="site-nav-item btn" href="/specs">Specs</a> | ||
<a class="site-nav-item btn" href="/docs/faq/">Docs</a> | ||
<a class="site-nav-item btn" href="/features/">Feature Extensions</a> | ||
<a class="site-nav-item btn" href="/community/resources/">Community</a> | ||
</nav> | ||
</div> | ||
</header> | ||
{% if page.lead %} | ||
<section class="page-section-spacious flush-bottom"> | ||
<div class="container-narrow"> | ||
<p class="lead">{{page.lead}}</p> | ||
</div> | ||
</section> | ||
{% endif %} | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes" | ||
/> | ||
<meta name="color-scheme" content="dark light" /> | ||
<title> | ||
{% if page.url == "/" %}WebAssembly{% else %}{{ page.title }} - | ||
WebAssembly{% endif %} | ||
</title> | ||
<link rel="stylesheet" type="text/css" href="/css/custom.css" /> | ||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> | ||
<link rel="icon" href="/favicon.ico" type="image/x-icon" /> | ||
</head> | ||
<body> | ||
<header class="page-section"> | ||
<div class="container-narrow"> | ||
<a class="site-logo" href="/" title="WebAssembly"></a> | ||
<nav class="site-nav"> | ||
<a class="site-nav-item btn" href="/">Overview</a> | ||
<a class="site-nav-item btn" href="/getting-started/developers-guide/" | ||
>Getting Started</a | ||
> | ||
<a class="site-nav-item btn" href="/specs">Specs</a> | ||
<a class="site-nav-item btn" href="/docs/faq/">Docs</a> | ||
<a class="site-nav-item btn" href="/features/">Feature Extensions</a> | ||
<a class="site-nav-item btn" href="/community/resources/" | ||
>Community</a | ||
> | ||
</nav> | ||
</div> | ||
</header> | ||
{% if page.lead %} | ||
<section class="page-section-spacious flush-bottom"> | ||
<div class="container-narrow"> | ||
<p class="lead">{{page.lead}}</p> | ||
</div> | ||
</section> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.