We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de10645 commit 5af88cbCopy full SHA for 5af88cb
1 file changed
pelican/plugins/graphviz/test_graphviz.py
@@ -93,13 +93,15 @@ def test_md(self):
93
# Write header
94
fid.write(f"Title: {TEST_FILE_STEM}\nDate: 1970-01-01\n")
95
# Write Graphviz block
96
- fid.write(f"""
+ fid.write(
97
+ f"""
98
{self.config["md_block_start"]} {options_string} dot
99
digraph{f" {self.config['digraph_id']}" if self.config["digraph_id"] else ""} {{
100
graph [rankdir = LR];
101
Hello -> World
102
}}
-""")
103
+"""
104
+ )
105
106
self.run_pelican()
107
self.assert_expected_output()
0 commit comments