Re: [whatwg/fullscreen] Convert to Bikeshed (#49)

Now ready to commit, as a single commit with this message:
```
Editorial: convert to bikeshed

Steps to reproduce:

 * Convert fullscreen.bs by pasting into this one-off tool:
   https://gist.github.com/foolip/f60a1614fb5d194aad4dbff89c54ceb3
 * Manually finish conversion to Bikeshed, tweaking as needed to match
   the existing output as closely as possible.
 * Export top layer and its add/remove concepts for HTML.
 * Rewrap to 100 columns, taking care not to wrap inside elements.
 * Update README.md and remove Makefile.

(See #49 for branch with separate commits.)

Finally, compare the new fullscreen.html with the old:

  for (var e of document.querySelectorAll('*')) {
    if (e.id)
      console.log('id: ' + e.id);
    if (e.hasAttribute('href') && e.className != 'self-link')
      console.log('href: ' + e.getAttribute('href'));
  }

Existing IDs/links affected:

 * #table-of-contents → #toc
 * #refsCSS → #biblio-css (and similar)
 * #anolis-references is gone

The old and new fullscreen.html were also copied from a browser into
plaintext and compared to verify no accidental differences. The biggest
differences are in the references section.

Fixes #49.
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fullscreen/pull/49#issuecomment-246958496

Received on Wednesday, 14 September 2016 09:36:13 UTC