rmcgibbo / slidedeck

Beautiful HTML5 slides in markdown. A easy-to-use fork of the google-io-2012 slide deck
317 stars 47 forks source link

Problem: Tables not supported #45

Open sam-falvo opened 7 years ago

sam-falvo commented 7 years ago

Example Markup used:

---
title: Wishbone vs. Furcula Bus
subtitle: Intel-style vs. Motorola-style Bus

How Wishbone Byte Lanes Work

|Lane          |Byte 0|Byte 1|Byte 2|Byte 3|HWord 0|HWord 1|Word |
|:------------:|:----:|:----:|:----:|:----:|:-----:|:-----:|:---:|
|DAT\_IO[7:0]  |   X  |      |      |      |   X   |       |  X  |
|DAT\_IO[15:8] |      |   X  |      |      |   X   |       |  X  |
|DAT\_IO[23:16]|      |      |   X  |      |       |   X   |  X  |
|DAT\_IO[31:24]|      |      |      |   X  |       |   X   |  X  |

Results in a slide which is garbled (copied from actual rendered page in web browser):

Wishbone vs. Furcula Bus
Intel-style vs. Motorola-style Bus

How Wishbone Byte Lanes Work

|Lane |Byte 0|Byte 1|Byte 2|Byte 3|HWord 0|HWord 1|Word | |:------------:|:----:|:----:|:----:|:----:|:-----:|:-----:|:---:| |DAT_IO[7:0] | X | | | | X | | X | |DAT_IO[15:8] | | X | | | X | | X | |DAT_IO[23:16]| | | X | | | X | X | |DAT_IO[31:24]| | | | X | | X | X |

Because of this, I must now render tables as images, which is inconvenient and somewhat wasteful. Is there any other work-around to this?