Post-processing documentation on Travis

Is there a way to post-process the doc-files as given by the
Documenter after the build on Travis before they are sent
to github.io?

What I want to do is: In the documentation, each entry is
prefixed with a line

     "ModuleName.FunctionName". 

Since all entries without exception refer to ‘ModuleName’
this is overkill and annoying and I want to remove this prefix.

But maybe there is an easier way to achieve this?

You can put that code in between the call to maledocs and the call to deploydocs.

1 Like

How simple! I will try this out.
Thanks!