-
|
Is there an easy way to combine features of I'm building a personal portfolio style site, and what I really need is a combo of the two. For example, it'd be great to have from
I don't specifically need all of this, but I think it'd a powerful in general to be able to combine all/most features at will. I see that Anyone know a way? A brief follow up: I noticed in the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Partly solved, for the case of table of contents in a blog post. None of the examples in the started project have any headers, so no table of contents appears! When you add headers, it shows up :) |
Beta Was this translation helpful? Give feedback.
-
|
Plugins are independant and don't see each others code, so one feature of a plugin is not usable in another. If you need sidebar and versioning, you probably want docs. Displaying a date of publishing can be added by using a custom frontmatter and swizzle We could add a docs flat list view page and you'd be able to preset it as "recent docs" if you really want to. In any case, what you are looking for is something custom. We do blog, we do docs, not a custom mix in between. Be prepared to write some code to handle your specific use-case |
Beta Was this translation helpful? Give feedback.
Plugins are independant and don't see each others code, so one feature of a plugin is not usable in another.
If you need sidebar and versioning, you probably want docs.
Displaying a date of publishing can be added by using a custom frontmatter and swizzle
We could add a docs flat list view page and you'd be able to preset it as "recent docs" if you really want to.
In any case, what you are looking for is something custom. We do blog, we do docs, not a custom mix in between. Be prepared to write some code to handle your specific use-case