mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-01-10 10:08:11 -05:00
Use mdformat for markdown formatting (#4244)
* Replace skip footnote with html block * Remove unnecessary duration columns * Add mdformat to pyproject * Start to use mdformat-toc * Remove table of contents headers * Fix empty header * Finally, run mdformat * Remove doctoc from CI * Fix issue with eip7732 * Error if linter changes something in CI
This commit is contained in:
19
setup.py
19
setup.py
@@ -11,7 +11,7 @@ from collections import OrderedDict
|
||||
from distutils import dir_util
|
||||
from distutils.util import convert_path
|
||||
from functools import lru_cache
|
||||
from marko.block import Heading, FencedCode, LinkRefDef, BlankLine
|
||||
from marko.block import Heading, FencedCode, HTMLBlock, BlankLine
|
||||
from marko.ext.gfm import gfm
|
||||
from marko.ext.gfm.elements import Table
|
||||
from marko.inline import CodeSpan
|
||||
@@ -26,7 +26,6 @@ sys.path.insert(0, pysetup_path)
|
||||
|
||||
from pysetup.constants import (
|
||||
PHASE0,
|
||||
ETH2_SPEC_COMMENT_PREFIX,
|
||||
)
|
||||
from pysetup.helpers import (
|
||||
combine_spec_objects,
|
||||
@@ -149,17 +148,6 @@ ALL_CURDLEPROOFS_CRS = {
|
||||
}
|
||||
|
||||
|
||||
@lru_cache(maxsize=None)
|
||||
def _get_eth2_spec_comment(child: LinkRefDef) -> Optional[str]:
|
||||
title = child.title
|
||||
if not (title[0] == "(" and title[len(title)-1] == ")"):
|
||||
return None
|
||||
title = title[1:len(title)-1]
|
||||
if not title.startswith(ETH2_SPEC_COMMENT_PREFIX):
|
||||
return None
|
||||
return title[len(ETH2_SPEC_COMMENT_PREFIX):].strip()
|
||||
|
||||
|
||||
@lru_cache(maxsize=None)
|
||||
def _parse_value(name: str, typed_value: str, type_hint: Optional[str] = None) -> VariableDefinition:
|
||||
comment = None
|
||||
@@ -324,9 +312,8 @@ def get_spec(file_name: Path, preset: Dict[str, str], config: Dict[str, str], pr
|
||||
else:
|
||||
constant_vars[name] = value_def
|
||||
|
||||
elif isinstance(child, LinkRefDef):
|
||||
comment = _get_eth2_spec_comment(child)
|
||||
if comment == "skip":
|
||||
elif isinstance(child, HTMLBlock):
|
||||
if child.body.strip() == "<!-- eth2spec: skip -->":
|
||||
should_skip = True
|
||||
|
||||
# Load KZG trusted setup from files
|
||||
|
||||
Reference in New Issue
Block a user