Fixes a problem caused by there being two ways of indicating reStructuredText code blocks: (#883)

* rst
* rest

Now both are handled gracefully.

Signed-off-by: Kevin Putnam <kevin.putnam@intel.com>
This commit is contained in:
Kevin Putnam
2019-10-28 09:25:57 -07:00
committed by michael vincerra
parent fab1ad6f85
commit 992a703fbe
@@ -374,7 +374,16 @@ div.highlight-console .highlight:before{
white-space: pre;
}
div.highlight-rst, div.highlight-rest .highlight:before{
div.highlight-rst .highlight:before{
background: #909090;
color: white;
content: " reStructuredText ";
font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;
font-size: 14px;
white-space: pre;
}
div.highlight-rest .highlight:before{
background: #909090;
color: white;
content: " reStructuredText ";