Odstraněny zbytky passování atributů manuálně, někde úmyslně zanecháno. Resolves #26
This commit is contained in:
parent
0c2ce7d56c
commit
b0f4ad71d0
1 changed files with 2 additions and 6 deletions
|
@ -341,11 +341,7 @@ class TransformProcessor:
|
||||||
|
|
||||||
def transform_Image(self, e: Image) -> Image:
|
def transform_Image(self, e: Image) -> Image:
|
||||||
e.content = self.transform(e.content)
|
e.content = self.transform(e.content)
|
||||||
# FIXME? Passing down attributes explicitly no longer needed, because OG now has access to Context.
|
# OG now has Context so this is not needed per se, but I'm keeping this here for the handling of attribute > context > default value
|
||||||
# Pass down the directory of the current source file for finding image
|
|
||||||
# files.
|
|
||||||
e.attributes["source_dir"] = self.context.dir
|
|
||||||
# FIXME? Passing down attributes explicitly no longer needed, because OG now has access to Context.
|
|
||||||
# Pass down "no-srcset" metadatum as attribute down to images.
|
# Pass down "no-srcset" metadatum as attribute down to images.
|
||||||
if not "no-srcset" in e.attributes:
|
if not "no-srcset" in e.attributes:
|
||||||
e.attributes["no-srcset"] = self.context.get_metadata("no-srcset") if self.context.get_metadata("no-srcset") is not None else False
|
e.attributes["no-srcset"] = self.context.get_metadata("no-srcset") if self.context.get_metadata("no-srcset") is not None else False
|
||||||
|
@ -470,7 +466,7 @@ class TransformProcessor:
|
||||||
|
|
||||||
|
|
||||||
# Pass down metadata 'highlight' and 'highlight_style' as attribute to CodeBlocks
|
# Pass down metadata 'highlight' and 'highlight_style' as attribute to CodeBlocks
|
||||||
# FIXME? Passing down attributes explicitly no longer needed, because OG now has access to Context.
|
# OG now has Context so this is not needed per se, but I'm keeping this here for the handling of attribute > context > default value
|
||||||
if not "highlight" in e.attributes:
|
if not "highlight" in e.attributes:
|
||||||
e.attributes["highlight"] = self.context.get_metadata("highlight") if self.context.get_metadata("highlight") is not None else True
|
e.attributes["highlight"] = self.context.get_metadata("highlight") if self.context.get_metadata("highlight") is not None else True
|
||||||
if not "style" in e.attributes:
|
if not "style" in e.attributes:
|
||||||
|
|
Loading…
Reference in a new issue