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
In test_code_in_list() of tests/test_importer.py, the following line mismatched the file:
test_code_in_list()
tests/test_importer.py
sample_line = re.search(r"- This is a code sample", md).group(0)
and its/tmp/tmpjg53eho1/code-in-list-test.md file derived from pelican/tests/content/wordpressexport.xml content:
/tmp/tmpjg53eho1/code-in-list-test.md
pelican/tests/content/wordpressexport.xml
... <ul> <li>List Item One!</li> <li>List Item Two!</li> <li>This is a code sample <pre> ...
Better to replace a single space with /s+ regex pattern.
/s+
Platform
The text was updated successfully, but these errors were encountered:
Fix test_importer.py getpelican#3376
684547d
4ad5b3a
LimitFilter
No branches or pull requests
Issue
In
test_code_in_list()
oftests/test_importer.py
, the following line mismatched the file:and its
/tmp/tmpjg53eho1/code-in-list-test.md
file derived frompelican/tests/content/wordpressexport.xml
content:Better to replace a single space with
/s+
regex pattern.Platform
Click to expand
Platform
The text was updated successfully, but these errors were encountered: