VuePress: a static site generator that excels at working with documentation
1–10 of 39 posts
Re: VuePress: a static site generator that excels at working with documentation
#2Also, I really love the decision to make `README.md` files act as the `index.html` files. This has the benefit of making your docs easy to read from your projects Github repo.
Looking forward to seeing how it progresses.
Re: VuePress: a static site generator that excels at working with documentation
#3Re: VuePress: a static site generator that excels at working with documentation
#4How does it compare to docusaurus, gitdocs, and a variety of other tools out there?
Re: VuePress: a static site generator that excels at working with documentation
#5That said, I've had to write a Python script to do some pre- and post-processing on the VuePress files. Generating a single README.md whose front matter contains my input JSON; stripping out script tags, as there's currently no way to prevent VuePress from generating them in the first place; minifying the HTML; injecting some extra tags; moving files around. There's a bit of a mismatch here between my use case and VuePress's primary role as a documentation generator.
I'd love to be able to call into VuePress as a library, instead of running it as a separate executable, and, for example, pass it my input data directly instead of writing it out to a temporary file for it to read back in. This is something I plan to toy with implementing once I get some free time again (currently bogged down with preparing to give a talk).
Re: VuePress: a static site generator that excels at working with documentation
#6I said it before and I'll say it again: VuePress is impressively easy to get started with. Running `vuepress dev` in an empty directory is all you need to get started. Also, I really love the decision to make `README.md` files act as the `index.html` files. This has the benefit of making your docs easy to read from your projects Github repo. Looking forward to seeing how it progresses.
Re: VuePress: a static site generator that excels at working with documentation
#7I don't want to have to worry about somebody injecting malicious code or cryptocurrency miners into my website by compromising a little-watched transitive dependency in my static site generator.
[0] https://blog.npmjs.org/post/175824896885/incident-report-npm... [1] https://blog.npmjs.org/post/173526807575/reported-malicious-... [2] https://www.bleepingcomputer.com/news/security/52-percent-of...
Re: VuePress: a static site generator that excels at working with documentation
#8I said it before and I'll say it again: VuePress is impressively easy to get started with. Running `vuepress dev` in an empty directory is all you need to get started. Also, I really love the decision to make `README.md` files act as the `index.html` files. This has the benefit of making your docs easy to read from your projects Github repo. Looking forward to seeing how it progresses.
How much vue do you need to know to heavily customize a theme?
Re: VuePress: a static site generator that excels at working with documentation
#9Re: VuePress: a static site generator that excels at working with documentation
#10I said it before and I'll say it again: VuePress is impressively easy to get started with. Running `vuepress dev` in an empty directory is all you need to get started. Also, I really love the decision to make `README.md` files act as the `index.html` files. This has the benefit of making your docs easy to read from your projects Github repo. Looking forward to seeing how it progresses.
How much vue do you need to know to heavily customize a theme?
Some info on vue single file components: https://vuejs.org/v2/guide/single-file-components.html
Props documentation: https://vuejs.org/v2/guide/components-props.html