mirror of
https://github.com/outline/outline.git
synced 2026-01-29 14:49:34 -06:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
import CodeFence from "./CodeFence";
|
|
|
|
export default class CodeBlock extends CodeFence {
|
|
get name() {
|
|
return "code_block";
|
|
}
|
|
|
|
get markdownToken() {
|
|
return "code_block";
|
|
}
|
|
}
|