Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"NativeMarkdownEverywhere": {
"description": "If new pages should default to the markdown content model everywhere, except discussion, Template and MediaWiki namespaces and namespaces with an explicitly configured content model.",
"value": false
"value": true
},
"NativeMarkdownSuffixDetection": {
"description": "If new pages with a title ending in .md should default to the markdown content model.",
Expand Down
3 changes: 2 additions & 1 deletion tests/phpunit/EntryPoints/MarkdownContentHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ public function testRendersMissingPageAsRedLink(): void {
}

public function testBatchedExistenceLookupKeepsBlueAndRedLinksApart(): void {
$this->getExistingTestPage( 'Batch Existing Page' );
// Only needs the target to exist; editPage works whatever the default model is.
$this->editPage( 'Batch Existing Page', 'It exists.' );

$output = $this->getParserOutput( 'Blue [[Batch Existing Page]] and red [[Batch Missing Page]]' );

Expand Down
Loading