Nathan Yergler
Nathan Yergler
You should be able to test this out by installing the development version of Hieroglyph and building with the `singlefile-slides` builder. I'm not sure how this will interact with things...
I haven't tried it with the `slide` directive yet, so that may be the issue. I'll have to look into it. I'm using the files in https://github.com/nyergler/hieroglyph/tree/master/src/hieroglyph/tests/singlefile for my unit...
I've added a test, and fixed the behavior for running the single-file builder on documents using the `slide` directive; want to see if this looks better for your uses?
I've used CSS columns for this in the past; for example, https://github.com/nyergler/in-depth-pdb/blame/master/slides.rst#L151 to describe how many columns there are in a section, and https://github.com/nyergler/in-depth-pdb/blame/master/slides.rst#L178 to trigger the column break. I...
Here are the two styles I use, taken from https://github.com/nyergler/in-depth-pdb/blob/master/_static/pdb-slides.css ``` css .column-break-before { break-before: column; -webkit-column-break-before: always; } ``` ``` css article.columns-2 div:first-of-type { display: inline-block; } ``` The...
Thanks for reporting this, @uyar. I suspect the interesting thing would be to figure out what the restructured text "tree" looks like when you have two consecutive paragraphs, as well...
There's a lot here, so it's going to take a bit for me to comb through it. Most of my comments from the previous diff stand, I think. Some thoughts...
It also looks like the tests are pretty screwed up. (You can ignore the CircleCI stuff, I've removed it, but the Travis suite should pass.)
First, apologies for taking so long to look into this. Do you happen to have an example of an SVG animation I could use to debug this issue, @keith-gray-powereng? I'd...
Thanks for that pointer, @tjadevries. I wonder if we should add a section to the Hieroglyph docs with "frequently useful with Hieroglyph" extensions?