-
Hi everyone, I'm using Statiq.Web but I opted to use the If I switch to boostrapping with I've tried using What am I doing wrong? How should I be using this module so that the redirects are generated while also preserving the original document? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Just have my phone without a laptop the next couple days, but I might be able to assist before I get back in town (and can definitely help more once I've got my laptop back). This is all from memory, so take it with a grain of salt, but hopefully I can help unblock you. I think the problem might be that the To ensure the original documents that the Does that make sense and seem like I'm on the right track? Let me know how you get along. |
Beta Was this translation helpful? Give feedback.
-
So, I had considered "splitting" my pipeline into parallel branches like you suggest, but I couldn't figure out how. Your link to the Control modules did help me find a solution in the end. thanks! What worked for me is to wrap the this.ProcessModules = new()
{
// ...
new ConcatDocuments(new GenerateRedirects()),
// ...
} |
Beta Was this translation helpful? Give feedback.
So, I had considered "splitting" my pipeline into parallel branches like you suggest, but I couldn't figure out how.
Your link to the Control modules did help me find a solution in the end. thanks!
What worked for me is to wrap the
GenerateRedirects
module in aConcatDocuments
module as such: