Vincent Rubinetti

Results 268 comments of Vincent Rubinetti
trafficstars

@dhimmel Can we make this issue specifically about table column wrapping, and deferring column width discussions to #254? Maybe rename the issue to suit? Looking at this again, it's a...

Yes, the `.css` is ([probably confusingly](https://github.com/manubot/rootstock/issues/241)) in the file `build/themes/default.html`. The styling classes for `table`s are [on these lines for normal](https://github.com/manubot/rootstock/blob/master/build/themes/default.html#L216) and [on these lines for printing](https://github.com/manubot/rootstock/blob/master/build/themes/default.html#L533) (pdf export or...

> @vincerubinetti what's the best way currently to get double spacing just for the PDF? In `build/themes/default.html`: ![image](https://user-images.githubusercontent.com/8326331/60602572-09f6f680-9d82-11e9-9526-d9296ef92011.png) Adjust to your desired height. Unfortunately just setting it to `2` doesn't...

This could be done without too much trouble. But as with most of the plugins, there has to be some assumption of the structure of the html. Is there a...

@dhimmel That's right. Though detecting the `subfigures` seems like a brittle solution. We'll have to sit down and think about how to solve this in the best way. We'll have...

I can give some suggestions for fixing this in the short term, but the longer-term/better solution will take some thinking. ### tooltips problem The problem is with these lines: https://github.com/manubot/rootstock/blob/master/build/plugins/tooltips.html#L401-L415...

### lightbox problem Change ```javascript const imgs = document.querySelectorAll('figure > img'); ``` to ```javascript const imgs = document.querySelectorAll('img'); ``` to get all images in the document instead of just those...

> Thanks again. I appreciate it. Finally, is it the `jump-to-first.html` plugin that is changing the behavior of the anchored links? Can you elaborate on this? Not sure what behavior...

Oh okay, I didn't realize you were referring to that specifically. Honestly this subfigure thing breaks so many features. That particular issue seems somewhat minor. Perhaps we can address the...

FWIW, I intend to eventually write an exhaustive docs (that goes into way more detail than could reasonably fit in a `readme.md`). We'll definitely cover what the plugins do, how...