-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Dev edition: add introduction, plus various tweaks #2837
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,17 +25,17 @@ | |
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<title>HTML Standard</title> | ||
<title w-nodev>HTML Standard</title> | ||
<title w-nohtml>HTML Standard, Developer's Edition</title> | ||
<meta name="theme-color" content="#3c790a"> | ||
<link w-nodev rel="stylesheet" href="https://resources.whatwg.org/standard.css"> | ||
<link w-nohtml rel="stylesheet" href="https://fonts.googleapis.com/css?family=Droid+Serif:regular,italic,bold"> | ||
<link w-nohtml rel="stylesheet" href="styles.css"> | ||
<link rel="icon" href="https://resources.whatwg.org/logo.svg"> | ||
<script> | ||
function toggleStatus(div) { | ||
div.parentNode.classList.toggle('wrapped'); | ||
} | ||
</script> | ||
<link w-nodev rel="icon" href="https://resources.whatwg.org/logo.svg"> | ||
<style w-nodev> | ||
[hidden] { display: none; } | ||
|
||
|
@@ -294,6 +294,28 @@ | |
</pre> | ||
--> | ||
|
||
<div w-nohtml> | ||
|
||
<h2 class="no-num no-toc" id="about-dev-edition">About this specification</h2> | ||
|
||
<p>This specification is like no other — it has been processed with <em>you</em>, the humble web | ||
developer, in mind.</p> | ||
|
||
<p>The focus of this specification is readability and ease of access. Unlike the <a | ||
href="/multipage">full HTML Standard</a>, this "developer's edition" removes information that only | ||
browser vendors need know. It is automatically produced from the full specification by our build | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. full specification -> HTML Living Standard? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought that might be confusing, as the developer's edition has a large h1 of "HTML: The Living Standard", with a h2 subtitle of "Developer's Edition" There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, I think we might need to rebrand somehow that since we don't want both of them to be standards. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I mean, both the multipage edition and the singlepage edition are still branded as the HTML Standard; I think it's reasonable for the dev edition too. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems a tad different, but I'm okay with leaving this as-is for now. |
||
tooling, and thus always in sync with the latest developments in HTML.</p> | ||
|
||
<p>To read about its conception, construction, and future, read the <a | ||
href="http://web.archive.org/web/20150220020906/http://archive.germanforblack.com:80/articles/html5-for-web-developers">original | ||
press release</a>, and the <a href="https://blog.whatwg.org/developers-edition-comeback">blog post | ||
about its relaunch</a>.</p> | ||
|
||
<p>Finally, feel free to <a href="https://github.com/whatwg/html/labels/dev%20edition">contribute | ||
on GitHub</a> to make this edition better for everyone!</p> | ||
|
||
</div> | ||
|
||
<h2 split-filename="introduction" id="introduction">Introduction</h2> | ||
|
||
<div w-nodev> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make that
/multipage/
to avoid a needless redirect.