markdown.nvim icon indicating copy to clipboard operation
markdown.nvim copied to clipboard

Rendering wide tables properly? (where character count exceeds viewport width)

Open YousufSSyed opened this issue 1 year ago • 1 comments
trafficstars

I have this table

| Preference                                                                                                                  | Value     | Function                                                                                                             |
| --------------------------------------------------------------------------------------------------------------------------- | --------- | -------------------------------------------------------------------------------------------------------------------- |
| `gfx.webrender.all`                                                                                                         |           | Enables Backdrop filter.                                                                                             |
| `browser.tabs.insertRelatedAfterCurrent`                                                                                    |           | Open new tab next to current one instead of at the rightmost.                                                        |
| `accessibility.force_disabled`                                                                                              |           | Disable Accessibility & improves performance.                                                                        |
| `toolkit.legacyUserProfile`<br>`Customizations.stylesheets`                                                                 |           | Enables custom CSS.                                                                                                  |
| `svg.context-properties.content.enabled`                                                                                    |           | Allows the `context-fill` property for Userchrome CSS.                                                               |
| `dom.disable_beforeunload`                                                                                                  |           | Disables warnings before tabs close.                                                                                 |
| `browser.link.open_newwindow.restriction`                                                                                   |           | Divert regular AND scripted windows with features.                                                                   |
| `browser.urlbar.update2.engineAliasRefresh`                                                                                 |           | Allows adding your own search engine..                                                                               |
| `apz.allow_double_tap_zooming`                                                                                              |           | Disable double tapping to zoom.                                                                                      |
| `layout.css.has-selector.enabled`                                                                                           |           | Enables the CSS `:has()` selector.                                                                                   |
| ` full-screen-api.enabled`                                                                                                  |           | Completely disable full screen, prevents websites to enabling it.                                                    |
| `browser.urlbar.showSearchTerms.featureGate`                                                                                |           | Show the search query in the URL bar instead of the URL (only for the default search engine).                        |
| `browser.gesture.swipe.up`<br>`browser.gesture.swipe.down`<br>`browser.gesture.swipe.left`<br>`browser.gesture.swipe.right` | .gestu    | Disables the respective mouse gestures. **Doesn't require a restart!**                                               |
| `accessibility.typeaheadfind.manual`</br>`accessibility.typeaheadfind`</br>`accessibility.typeaheadfind.autostart`          | d.autost  | Disables Quick Find                                                                                                  |
| ``browser.tabs.loadBookmarksInTabs``                                                                                        |           | Open bookmarks in new tabs                                                                                           |
| `xpinstall.signatures.required`                                                                                             |           | Disable requiring signatures for addons and permanently sideload them **(Only works on Firefox Developer Edition)**. |
| browser.cache.disk.capacity                                                                                                 | `1024000` | The capacityof the disk cache for page, size in MBs.                                                                 |
| browser.cache.disk.smart_size.enabled                                                                                       | `False`   | Disable automatically resizing the disk cache capacity                                                               |
| `dom.event.clipboardevents.enabled`                                                                                         | `false`   | Allow pasting in any input box                                                                                       |
|                                                                                                                             |           |                                                                                                                      |

And it shows up like this with the plugin: CleanShot 2024-10-10 at 20 23 21@2x

YousufSSyed avatar Oct 11 '24 00:10 YousufSSyed