Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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. Finally, to 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 whatwg#47.
- Loading branch information