Programmatically redefine Eclipse Help file location -


adding eclipse plugin simple 2 files:

plugin.xml

<extension      point="org.eclipse.help.toc">   <toc         file="helptoc.xml"         primary="true">   </toc> </extension> 

helptoc.xml

<?xml version="1.0" encoding="utf-8"?> <?nls type="org.eclipse.help.toc"?>  <toc label="enide maven readme" topic=".readme.md.html"> </toc> 

then .html created gfmv plugin in .md file:

is there way redefine .html file file location programmatically?

the goal enable taking content generated @ runtime docs (e.g. javadocs .htmls)

i haven't dug much, have checked out tocprovider attribute of org.eclipse.help.toc extension point?


Comments

Popular posts from this blog

c++ - How to add Crypto++ library to Qt project -

jQuery Mobile app not scrolling in Firefox -

How to use vim as editor in Matlab GUI -