facebookincubator / infima

A UI framework that provides websites with the minimal CSS and JS needed to get started with building a modern responsive beautiful website
https://infima.dev
MIT License
408 stars 55 forks source link

TOC should be allowed to display with @media print #278

Open slorber opened 1 year ago

slorber commented 1 year ago

When printing a doc (or sending it to your Kindle) it should be possible to print the table of contents in certain situations.

Hiding the right TOC makes sense in most cases, but not in many others.

It is likely more the responsibility of Docusaurus to decide when a TOC can be printed, not Infima which currently does:

.table-of-contents {
  @media print {
    display: none;
  }
}

CleanShot 2022-11-23 at 17 01 06@2x

https://docusaurus.io/docs/next/markdown-features/toc#inline-table-of-contents

Reported in https://github.com/facebook/docusaurus/discussions/8362