-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 Export plugins explicitly with
__all__
(#91)
- Loading branch information
Showing
11 changed files
with
33 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import admon_plugin # noqa: F401 | ||
from .index import admon_plugin | ||
|
||
__all__ = ("admon_plugin",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import anchors_plugin # noqa F401 | ||
from .index import anchors_plugin | ||
|
||
__all__ = ("anchors_plugin",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import attrs_block_plugin, attrs_plugin # noqa: F401 | ||
from .index import attrs_block_plugin, attrs_plugin | ||
|
||
__all__ = ("attrs_block_plugin", "attrs_plugin") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import container_plugin # noqa F401 | ||
from .index import container_plugin | ||
|
||
__all__ = ("container_plugin",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import deflist_plugin # noqa F401 | ||
from .index import deflist_plugin | ||
|
||
__all__ = ("deflist_plugin",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import dollarmath_plugin # noqa F401 | ||
from .index import dollarmath_plugin | ||
|
||
__all__ = ("dollarmath_plugin",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import footnote_plugin # noqa: F401 | ||
from .index import footnote_plugin | ||
|
||
__all__ = ("footnote_plugin",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import front_matter_plugin # noqa: F401 | ||
from .index import front_matter_plugin | ||
|
||
__all__ = ("front_matter_plugin",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import myst_block_plugin # noqa: F401 | ||
from .index import myst_block_plugin | ||
|
||
__all__ = ("myst_block_plugin",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import myst_role_plugin # noqa: F401 | ||
from .index import myst_role_plugin | ||
|
||
__all__ = ("myst_role_plugin",) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .index import texmath_plugin # noqa F401 | ||
from .index import texmath_plugin | ||
|
||
__all__ = ("texmath_plugin",) |