Skip to content
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

Convert to Bikeshed #49

Closed
wants to merge 5 commits into from
Closed

Convert to Bikeshed #49

wants to merge 5 commits into from

Commits on Sep 14, 2016

  1. Convert fullscreen.bs using convert.html

    convert.html is a one-off tool written for the purpose:
    https://gist.github.com/foolip/f60a1614fb5d194aad4dbff89c54ceb3
    foolip committed Sep 14, 2016
    Configuration menu
    Copy the full SHA
    5755d19 View commit details
    Browse the repository at this point in the history
  2. Manually finish conversion to Bikeshed

    This was used to compare IDs and links to the current spec:
    
    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 spec were also copied into plaintext and compared to
    verify no accidental differences. The biggest differences are in the
    references section.
    foolip committed Sep 14, 2016
    Configuration menu
    Copy the full SHA
    1d82935 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d592dd6 View commit details
    Browse the repository at this point in the history
  4. Rewrap to 100 columns

    foolip committed Sep 14, 2016
    Configuration menu
    Copy the full SHA
    2c2a807 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d5f397d View commit details
    Browse the repository at this point in the history