-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please do a HTML export #37
Comments
The name of this project (plsql-md-doc) is almost misleading, because it doesn't just do markdown. If you look into the template folder, you'll see This project uses handlebars to substitute the content of your PL/SQL doc into any file. For instance, the # {{toUpperCase projectDispName}}
{{#each files}}
- [{{toUpperCase name}}]({{fileName}})
{{/each}} But you could also create your own to look like: <h1> {{toUpperCase projectDispName}} </h1>
<ul>
{{#each files}}
<li><a href="{{fileName}}">{{toUpperCase name}}</a></li>
{{/each}}
</ul> I do agree it would be useful to provide a "customer" readable template out of the box. |
We must produce a good looking HTML file, not just basic. @vincentmorneau what do you think about using a Bootstrap CDN to help with the HTML markup? This way you can get something that actually looks good? http://getbootstrap.com/getting-started/ |
Yes I think that's a good idea. If you want I can help. Just assign me to this issue and I'll find some time soon to produce a quality HTML template. |
I guarantee you nobody cares about all the hard work in the backend, if you provide a nice, modern, responsive HTML Frontend. Everybody will like it and use it :-) |
I would call it Docer to have a famous pair that can benifit from each other: Logger and Docer ;-) This sounds like a strong couple you should both use in your projects :-) |
@JuergenSchuster @vincentmorneau #48 may resolve this. |
#56 resolved this issue. |
Hi guys,
I know you are living in a tech world and find markup cool, but me and my customer actually looking for a PL/SQL documentation tool like PL/DOC where I simply can generate an HTML file for documentation where the normal people like my customers and me :-) can simply invoke it with any browser. I would use PL/DOC but since Martin did that great job with Logger which we use heavily and PL/DOC looks quite old I'm hoping for a similar new standard solution for PL/SQL documentation from him. Let me assure you this is the only feature that separates you from a serious standard product in the PL/SQL world ;-)
Thanks, Juergen
The text was updated successfully, but these errors were encountered: