Two things I noticed -- your .js files don't include @element, which is why you're seeing the Entity entries. Unfortunately, in my limited testing the doc tool doesn't merge entries with the same name, so if you add @element here, you end up with two rtr-history entries, for example, one from the .html file and one from the .js file.
In your case, since there's no other doc in the .html files, you can move all of the docs to the .js files and you should be fine (I think). Also, the methods should be: Description @method methodname Unfortunately, unlike JSDoc the tool doesn't infer method names, so if you leave out the @method it won't show up. Hope this helps. OK Arthur On Thu, Jan 15, 2015 at 6:29 AM, Jeff Schwartz <[email protected]> wrote: > I forgot to mention that I am using the instructions found @ > https://www.polymer-project.org/docs/start/reusableelements.html to > publish my element on github pages. You can view the page here > http://jeffschwartz.github.io/rtr/components/rtr/. > > On Thursday, January 15, 2015 at 8:56:32 AM UTC-5, Jeff Schwartz wrote: >> >> How do I get core-component-page to include multiple .html and .js files. >> I tried this: >> <core-component-page sources="['rtr-router.html', 'rtr-router.js', >> 'rtr-history.html', 'rtr-history.js', 'rtr-route.html', >> 'rtr-route.js', >> 'rtr-lazyroute.html', 'rtr-lazyroute.js']"></core-component-page> >> >> but it doesn't work: >> >> >> <https://lh4.googleusercontent.com/-cSlYtV-RtPk/VLfGiSd7XTI/AAAAAAAAGOA/UA8Y8_PplX8/s1600/Untitled.png> >> >> Thanks in advance. >> > Follow Polymer on Google+: plus.google.com/107187849809354688692 > --- > You received this message because you are subscribed to the Google Groups > "Polymer" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/polymer-dev/011ca175-9e69-4646-87d6-7912e04d6885%40googlegroups.com > <https://groups.google.com/d/msgid/polymer-dev/011ca175-9e69-4646-87d6-7912e04d6885%40googlegroups.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > Follow Polymer on Google+: plus.google.com/107187849809354688692 --- You received this message because you are subscribed to the Google Groups "Polymer" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/polymer-dev/CADSbU_zzs1buqV9%2BdhML2MQYMutj8d7jpoayWV1N_SMMrV32vQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
