Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENT-10940: file and command components in examples & web ui sections #3183

Merged
merged 6 commits into from
Jan 15, 2024
2 changes: 2 additions & 0 deletions .github/workflows/markdowner.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ def perform_edits(content, flags, filename):
print(f"{filename}: Added newline before EOF")

if flags.codeblocks or flags.all:
replacements = {"```\n```command": "```\n\n```command"}
olehermanse marked this conversation as resolved.
Show resolved Hide resolved
content = replace_with_dict(content, replacements, filename)
content = edit_codeblocks(content, filename)
return content

Expand Down