Skip to content

Commit 286fc59

Browse files
committed
feat: parse MDX natively, dropping mdx2vast
Signed-off-by: Joseph Kato <joseph@jdkato.io>
1 parent fedaf20 commit 286fc59

11 files changed

Lines changed: 747 additions & 126 deletions

File tree

‎internal/lint/lint.go‎

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ type Linter struct {
3636
adoc *procPool
3737
adocOnce sync.Once
3838

39-
// mdx is the same arrangement for mdx2vast.
40-
mdx *procPool
41-
mdxOnce sync.Once
42-
4339
// rst is the same arrangement for Docutils.
4440
rst *procPool
4541
rstOnce sync.Once
@@ -612,11 +608,6 @@ func (l *Linter) stopExternal() {
612608
l.adoc = nil
613609
l.adocOnce = sync.Once{}
614610
}
615-
if l.mdx != nil {
616-
l.mdx.stop()
617-
l.mdx = nil
618-
l.mdxOnce = sync.Once{}
619-
}
620611
if l.rst != nil {
621612
l.rst.stop()
622613
l.rst = nil

0 commit comments

Comments
 (0)