Compare commits

..

1 Commits

Author SHA1 Message Date
Sergio Martínez Portela
66ccb66211 Explicitly extract code block language.
Some checks failed
Testing / pytest (push) Successful in 29s
Testing / mypy (push) Successful in 32s
Testing / style-formatting (push) Failing after 32s
Testing / style-sorted-imports (push) Successful in 23s
Testing / stability-extra-test (push) Successful in 31s
2024-09-30 23:39:43 +02:00

View File

@ -922,9 +922,6 @@ class Headline:
if " " in arguments:
language = arguments[: arguments.index(" ")]
arguments = arguments[arguments.index(" ") + 1 :]
else:
language = arguments
arguments = None
sections.append(
{
"line_first": start + 1,
@ -987,7 +984,6 @@ class Headline:
content = section["content"]
code_result = section.get("result", None)
arguments = section.get("arguments", None)
language = section.get("language", None)
name = section.get("name", None)
results.append(
CodeSnippet(