mirror of
https://github.com/outline/outline.git
synced 2026-01-20 18:10:04 -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";
|
|
}
|
|
}
|