mirror of
https://github.com/Redocly/redoc.git
synced 2025-02-28 16:10:33 +03:00
Ensure markdown style is not applied to other elements
This commit is contained in:
parent
f407d656f1
commit
e67ab9c3ea
|
@ -94,7 +94,7 @@ footer {
|
|||
|
||||
/* markdown elements */
|
||||
|
||||
:host {
|
||||
:host .redoc-markdown-block {
|
||||
pre {
|
||||
font-family: Courier, monospace;
|
||||
white-space: pre-wrap;
|
||||
|
@ -106,6 +106,10 @@ footer {
|
|||
|
||||
code {
|
||||
background-color: transparent;
|
||||
|
||||
&:before, &:after {
|
||||
content: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -62,6 +62,6 @@ export class MarkedPipe {
|
|||
if (!isString(value)) {
|
||||
throw new InvalidPipeArgumentException(JsonPointerEscapePipe, value);
|
||||
}
|
||||
return marked(value);
|
||||
return `<span class="redoc-markdown-block">${marked(value)}</span>`;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user