Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No template for Spellcasting table of archetypes #191

Closed
lorddarkhan opened this issue Sep 12, 2016 · 5 comments · Fixed by #1544
Closed

No template for Spellcasting table of archetypes #191

lorddarkhan opened this issue Sep 12, 2016 · 5 comments · Fixed by #1544
Labels
phb-style tweak Small, non-breaking change

Comments

@lorddarkhan
Copy link

lorddarkhan commented Sep 12, 2016

Suggestion, not a bug report

There is no template in place for putting together the Spellcasting table for an archetype who is a half-caster (like the Arcane Trickster or the Eldritch Knight). I'm surprised this isn't implemented already, or perhaps there's a way to get the table set up, but I can't find one.

The main issues are the smaller line spacing of the Spellcasting table, and the fact that the top row of the column is strangely set up with some column-spanning.

image

@lorddarkhan lorddarkhan changed the title No template for half-caster Spellcasting table No template for Spellcasting table of archetypes Sep 12, 2016
@vorpalhex
Copy link

I can't imagine this being accomplished with markdown, it's going to have to be pure html (or a very tortured markdown template). Alternatively, move the "Spell Slots per Spell Level" outside the table and set it as a right-aligned h4, then you should be able to use a normal table.

I think the main issue here is the weird colspan double header.

@lorddarkhan
Copy link
Author

lorddarkhan commented Sep 12, 2016

Ya, following that logic, I found a reasonable workaround. It would be really nice if there was a way to reduce the font size in a table. Is there a reasonably simple way to make the font size the same as the normal text (instead of the larger table text size)?

EDIT: Nevermind, I have it working fine. Here's How I ended up writing it (notice that I needed to add empty columns to line things up correctly... but it works):

##### Eldritch Knight Spellcasting
<div style='text-align:right; line-height:0%'><h6>**&#8211;Spell Slots per Spell Level&#8211;**</h></div>

<div style='line-height:80%'>
| Fighter<br>Level | Cantrips<br>Known | Spells<br>Known |||||| 1st |||| 2nd |||| 3rd |||| 4th |
|:----:|:-:|:--:||||||:-:||||:-:||||:-:||||:-:|
| 3rd  | 2 | 3  |||||| 2 |||| — |||| — |||| — |
| 4th  | 2 | 4  |||||| 3 |||| — |||| — |||| — |
| 5th  | 2 | 4  |||||| 3 |||| — |||| — |||| — |
| 6th  | 2 | 4  |||||| 3 |||| — |||| — |||| — |
| 7th  | 2 | 5  |||||| 4 |||| 2 |||| — |||| — |
| 8th  | 2 | 6  |||||| 4 |||| 2 |||| — |||| — |
| 9th  | 2 | 6  |||||| 4 |||| 2 |||| — |||| — |
| 10th | 3 | 7  |||||| 4 |||| 3 |||| — |||| — |
| 11th | 3 | 8  |||||| 4 |||| 3 |||| — |||| — |
| 12th | 3 | 8  |||||| 4 |||| 3 |||| — |||| — |
| 13th | 3 | 9  |||||| 4 |||| 3 |||| 2 |||| — |
| 14th | 3 | 10 |||||| 4 |||| 3 |||| 2 |||| — |
| 15th | 3 | 10 |||||| 4 |||| 3 |||| 2 |||| — |
| 16th | 3 | 11 |||||| 4 |||| 3 |||| 3 |||| — |
| 17th | 3 | 11 |||||| 4 |||| 3 |||| 3 |||| — |
| 18th | 3 | 11 |||||| 4 |||| 3 |||| 3 |||| — |
| 19th | 3 | 12 |||||| 4 |||| 3 |||| 3 |||| 1 |
| 20th | 3 | 13 |||||| 4 |||| 3 |||| 3 |||| 1 |
</div>

And what it looks like:
image

I think it's safe to mark this resolved, though if there's a wiki, I can throw this example up.

@michaeltlombardi
Copy link

michaeltlombardi commented Sep 12, 2016

To make this look pretty in markdown would probably require support for grid tables (example project) like this:

+------------+--------+
|     Cheatsheet      |
+------------+--------+
| Word       | Number |
+------------+--------+
| One        | 1      |
| Two        | 2      |
| Three      | 3      |
+------------+--------+

@stolksdorf
Copy link
Collaborator

Good idea on the wiki @lorddarkhan, I'll mark this as resolved, but leave it opened as a reminder to create a wiki of "Protips" and to just generally improve the project's docs. I get a lot of repeat questions about fonts/images/spacing/backgrounds etc. that I should collect somewhere and point people towards.

@ericscheid
Copy link
Collaborator

Added to epic #1096.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
phb-style tweak Small, non-breaking change
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants