You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { ExtendedKind } from '@/constants' |
|
|
|
/** Kinds whose body is AsciiDoc in Imwald (wiki article, publication content). */ |
|
export function isAsciidocMarkupKind(kind: number): boolean { |
|
return kind === ExtendedKind.WIKI_ARTICLE || kind === ExtendedKind.PUBLICATION_CONTENT |
|
}
|
|
|