Skip to content

Commit

Permalink
Merge 4da5110 into 60efc29
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskuehl committed Oct 12, 2019
2 parents 60efc29 + 4da5110 commit 9d05970
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fluffy/static/scss/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ p.error {
}
}

h1, h2, h3, h4, h5, p {
h1, h2, h3, h4, h5, p, table {
margin-bottom: 10px;
}

Expand Down
10 changes: 10 additions & 0 deletions fluffy/static/scss/markdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,14 @@ $source-code-font: 'Source Code Pro', monospace;
padding-left: 5px;
}
}

td, th {
border: solid 1px #ddd;
padding: 8px;
}

th {
font-weight: bold;
background-color: #f1f1f1;
}
}
16 changes: 16 additions & 0 deletions testing/files/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,22 @@ Instead of overwriting an entire config file just to change one value, try to
3. Better monitoring of puppet runs (e.g. to see when a server has not updated
recently, which is a common problem on desktops)

## Some tables!

table one:

| Command | Description |
| --- | --- |
| `git status` | List all *new or modified* files |
| `git diff` | Show file differences that **haven't been** staged |

table 2:

| Left-aligned | Center-aligned | Right-aligned |
| :--- | :---: | ---: |
| git status | git status | git status |
| git diff | git diff | git diff |

[puppet]: https://en.wikipedia.org/wiki/Puppet_(software)
[ocf]: https://www.ocf.berkeley.edu/
[debian]: https://www.debian.org/
Expand Down

0 comments on commit 9d05970

Please sign in to comment.