Hardcoding a stylesheet for particular scripts

I’ve a set of scripts which we want to generate HTML reports from the output window
the issue i have is that as different users generate them the style sheet hard coded is going to be set to their local pyrevit install, and these docs should be able to be stand along docs.

I started off with:
output.inject_to_head(
“link”,
“”,
attribs={
“rel”: “stylesheet”,
“html”: r"file:///G:…shared-server-location…\outputstyles.css",
},
)

… but this is failing to actually inject the code into the HTML doc.

Plan B is to point user configs to the server location, but i really only want to do this for a limited see of scripts.

Plan C is to either hard code the styles into the HTML doc or to run some processing over the dropoff folders for these reports to change the path of the stylesheet

has anyone come up against this before?