Skip to content

Commit 3fac473

Browse files
committed
test: verify issue 5174
fixes #5174
1 parent e6cc1ed commit 3fac473

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

test/docfx.Tests/DocsetBuildTest.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,4 +294,15 @@ public static async Task Build_Toc_Gen_Name()
294294
}
295295
""", outputs["toc.json"]());
296296
}
297+
298+
[Fact]
299+
public static async Task Issue5174()
300+
{
301+
var outputs = await Build(new()
302+
{
303+
["index.md"] = "[link](On%25252Dcall-duties.md)",
304+
["On%252Dcall-duties.md"] = "a",
305+
});
306+
Assert.NotEmpty(outputs["On%252Dcall-duties.html"]());
307+
}
297308
}

0 commit comments

Comments
 (0)