We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Steps to Reproduce create code snippet indented to ordered list as follows:
1. lorem ipsum dolor 2. lorem ipsum dolor ``` my_code_block ``` 3. lorem ipsum dolor 4. lorem ipsum dolor
Expected Result
Actual Result
1. lorem ipsum dolor 2. lorem ipsum dolor ''' my_code_block ''' 1. lorem ipsum dolor 2. lorem ipsum dolor
The text was updated successfully, but these errors were encountered:
Issue: Adding indentations for child blocks is handled such that it will be single line. But it can be string with multiple lines.
Solution: textwrap package provides indent method which adds indentation for multiline string.
Ref:
Created #63 to fix the issue.
@echo724 please review and merge
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Steps to Reproduce
create code snippet indented to ordered list as follows:
Expected Result
Actual Result
The text was updated successfully, but these errors were encountered: