Mattflaschen has uploaded a new change for review. https://gerrit.wikimedia.org/r/199817
Change subject: Fix wgFlowContentFormat docs and note that wikitext may be deprecated ...................................................................... Fix wgFlowContentFormat docs and note that wikitext may be deprecated Change-Id: I2a2bf6e387b1cd08f22b16fb43274256627cece0 --- M Flow.php 1 file changed, 4 insertions(+), 7 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Flow refs/changes/17/199817/1 diff --git a/Flow.php b/Flow.php index e57f586..085b372 100644 --- a/Flow.php +++ b/Flow.php @@ -166,15 +166,12 @@ // $wgFlowExternalStore = array( 'DB://cluster24', 'DB://cluster25' ); $wgFlowExternalStore = false; -// By default, Flow will store data in wikitext format. It's also the format supported -// by the most basic "editor": none; in which case no conversion (Parsoid) will be needed. -// the only conversion needed it wikitext -> HTML for outputting the content, which will -// then be handled by the parser. -// On high-volume wikis, it's beneficial to save HTML to the database (to avoid having to -// parse it every time for output), but then you'll have to make sure Parsoid is up and -// running, as it'll be necessary to convert HTML to wikitext for the basic editor. +// By default, Flow will store content in HTML. However, this requires having Parsoid up +// and running, as it'll be necessary to convert HTML to wikitext for the basic editor. // (n.b. to use VisualEditor, you'll definitely need Parsoid, so if you do support VE, // might as well set this to HTML right away) +// +// The 'wikitext' format is likely to be deprecated in the future. $wgFlowContentFormat = 'html'; // possible values: html|wikitext XXX bug 70148 with wikitext // Flow Parsoid config -- To view, visit https://gerrit.wikimedia.org/r/199817 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I2a2bf6e387b1cd08f22b16fb43274256627cece0 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/Flow Gerrit-Branch: master Gerrit-Owner: Mattflaschen <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
