-
Notifications
You must be signed in to change notification settings - Fork 31
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
add block quote level #14
base: master
Are you sure you want to change the base?
Conversation
Thank you for taking your time. I checked the passed arguments to processBlockQuote and found a problem. /**
* @param Text $text
*/
public function processBlockQuote(Text $text, array $options = array(), $level = 1)
{
$args = func_get_args();
var_dump($args);
/...
input:
output:
|
Thank you for your quick response. I have added an block quote extensions unit test. In my use case the extension works great. I suppose you expect level 1 on all nested quotes? |
level 1: No probrem. I want to solve this. I think the probrem is https://github.com/kzykhys/Ciconia/blob/master/src/Ciconia/Markdown.php#L133. |
👍 |
Some render may need the level of the block quote.