Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added failing test case: custom render codeBlock() #13

Closed
wants to merge 1 commit into from
Closed
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
46 changes: 46 additions & 0 deletions tests/006-render-custom-codeblock.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
--TEST--
Check for custom render of codeBlocks
--SKIPIF--
<?php if (!extension_loaded("sundown")) print "skip"; ?>
--FILE--
<?php

class CustomRender extends Sundown\Render\Base
{
public function blockCode($code, $language)
{
echo "OK.";
return $code;
}
}

$m = new Sundown\Markdown(
new CustomRender(),
array()
);

$m->render('
This is a normal paragraph.

This is a code block

This is another normal paragraph.
');

$m2 = new Sundown\Markdown(
new CustomRender(),
array('fenced_code_blocks' => true)
);

$m->render('
This is a normal paragraph.

``` php
This is a fenced code block
```

This is another normal paragraph.
');

--EXPECT--
OK.OK.