Skip to content

Instantly share code, notes, and snippets.

Created April 19, 2017 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/a1c652a4da3951a08ecc45628f2a305f to your computer and use it in GitHub Desktop.
Save anonymous/a1c652a4da3951a08ecc45628f2a305f to your computer and use it in GitHub Desktop.
#Visual Editor
$wgDefaultUserOptions['visualeditor-enable'] = 1;
$wgHiddenPrefs[] = 'visualeditor-enable';
#parsoid
$wgVirtualRestConfig['modules']['parsoid'] = array(
'url' => 'http://localhost:8142',
'domain' => 'localhost'
);
$wgVisualEditorAvailableNamespaces = array(
NS_MAIN => true,
NS_USER => true,
NS_HELP => true,
NS_PROJECT => true,
NS_COMMLINK => true,
NS_PROJMGMT => true,
NS_ISSUE => true
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment