-
Notifications
You must be signed in to change notification settings - Fork 10
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
Markdown to HTML issues for OSLC-OP Specs #583
Comments
https://oslc-op.github.io/oslc-specs/specs/core/oslc-core.html#motivation has those hr's! Otherwise:
@media only screen {
hr {
display: none;
}
} |
Add this bit of CSS in the HEAD: body#respecDocument pre,
body#respecDocument code {
color: black;
font-family: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono",
"Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
font-weight: 400;
} This will reset a red bold typewriter font to the normal black best mono font that is installed by default on mac, win, linux. Better yet, this one: body#respecDocument pre,
body#respecDocument code {
color: black;
font-family: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono",
"Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
font-weight: 400;
}
@media only screen {
body#respecDocument pre {
background: hsl(84, 7%, 95%);
padding: 10px 20px 10px 20px;
/* margin: 0 20px; */
border-radius: 5px;
}
} It will give you this look: |
Use the following config: conformanceLabelPrefix: "OLP",
// noConformanceStyling: 1,
// noConformanceTable: 1,
// conformanceClauseStrength: 1, Insert an empty conformance section like this: $body$
<section id="conformance"></section>
<section class="appendix"> Mark up text with a span: Let's start with some normative text. <span class="conformance">OSLC Services **MUST** support at least one RDF resource serialization format, and should support as many serialization formats as possible through content negotiation.</span> Result: plus |
example text
or embedded in:The text was updated successfully, but these errors were encountered: