mirror of
https://github.com/NixOS/nix.git
synced 2025-12-04 16:10:59 +01:00
Support per-store Markdown documentation
This commit is contained in:
parent
7704118d28
commit
9eb53bbf17
20 changed files with 181 additions and 4 deletions
|
|
@ -7,6 +7,13 @@ struct DummyStoreConfig : virtual StoreConfig {
|
|||
using StoreConfig::StoreConfig;
|
||||
|
||||
const std::string name() override { return "Dummy Store"; }
|
||||
|
||||
std::string doc() override
|
||||
{
|
||||
return
|
||||
#include "dummy-store.md"
|
||||
;
|
||||
}
|
||||
};
|
||||
|
||||
struct DummyStore : public virtual DummyStoreConfig, public virtual Store
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue