ikiwiki/doc/plugins/write/discussion.mdwn

11 lines
297 B
Plaintext
Raw Normal View History

Maybe this is obvious, but the config variable lives in the IkiWiki module, and one probably
wants to call defaultconfig for most applications.
<pre>
%IkiWiki::config=IkiWiki::defaultconfig();
IkiWiki::Setup::load($config_file);
print join(",",keys %IkiWiki::config);
</pre>
[[DavidBremner]]