mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-21 17:47:10 +00:00
Rename _pygments.scss to _syntax.scss
- Include Rouge in Pygments examples
This commit is contained in:
parent
dddcfdba62
commit
706b60ca22
5 changed files with 10 additions and 47 deletions
|
@ -68,12 +68,12 @@ HTML and <abbr title="cascading stylesheets">CSS<abbr> are our tools. Mauris a a
|
|||
| cell1 | cell2 | cell3 |
|
||||
| cell4 | cell5 | cell6 |
|
||||
|=====
|
||||
| Foot1 | Foot2 | Foot3
|
||||
{: rules="groups"}
|
||||
| Foot1 | Foot2 | Foot3 |
|
||||
{: .table}
|
||||
|
||||
## Code Snippets
|
||||
|
||||
Syntax highlighting via Pygments
|
||||
Syntax highlighting via Pygments and Rouge
|
||||
|
||||
{% highlight css %}
|
||||
#container {
|
||||
|
@ -83,7 +83,7 @@ Syntax highlighting via Pygments
|
|||
}
|
||||
{% endhighlight %}
|
||||
|
||||
Non Pygments code example
|
||||
Non Pygments/Rouge code example
|
||||
|
||||
<div id="awesome">
|
||||
<p>This is great isn't it?</p>
|
||||
|
|
|
@ -16,9 +16,9 @@ Syntax highlighting is a feature that displays source code, in different colors
|
|||
|
||||
[^1]: <http://en.wikipedia.org/wiki/Syntax_highlighting>
|
||||
|
||||
### Pygments Code Blocks
|
||||
### Pygments or Rouge Code Blocks
|
||||
|
||||
To modify styling and highlight colors edit `/_sass/_pygments.scss`.
|
||||
To modify styling and highlight colors edit `/_sass/_syntax.scss`.
|
||||
|
||||
{% highlight css %}
|
||||
#container {
|
||||
|
|
|
@ -70,43 +70,6 @@ ins {
|
|||
}
|
||||
|
||||
|
||||
// Tables
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
margin: ((0px + $doc-line-height) / 2) 0;
|
||||
margin: ((0rem + ($doc-line-height / $doc-font-size)) / 2) 0;
|
||||
width: 100%;
|
||||
}
|
||||
tbody {
|
||||
tr:hover > td, tr:hover > th {
|
||||
background-color: $table-hover-color;
|
||||
}
|
||||
}
|
||||
thead {
|
||||
tr:first-child td {
|
||||
border-bottom: 2px solid $table-border-color;
|
||||
}
|
||||
}
|
||||
th {
|
||||
padding: (0px + $doc-line-height) / 2;
|
||||
padding: (0rem + ($doc-line-height / $doc-font-size)) / 2;
|
||||
font-family: $alt-font;
|
||||
font-weight: bold;
|
||||
text-align: left;
|
||||
background-color: $table-header-color;
|
||||
border-bottom: 1px solid darken($border-color, 15%);
|
||||
}
|
||||
td {
|
||||
border-bottom: 1px solid $border-color;
|
||||
padding: (0px + $doc-line-height) / 2;
|
||||
padding: (0rem + ($doc-line-height / $doc-font-size)) / 2;
|
||||
@include font-size(18);
|
||||
}
|
||||
tr, td, th {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
// Links
|
||||
// --------------------------------------------------
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ sitemap: false
|
|||
@import "mixins";
|
||||
@import "reset";
|
||||
@import "site";
|
||||
@import "pygments";
|
||||
@import "syntax";
|
||||
@import "coderay";
|
||||
@import "elements";
|
||||
@import "forms";
|
||||
|
|
Loading…
Reference in a new issue