move iframe width/height props to constants in MarkdownRenderer

This commit is contained in:
James Fenn
2022-01-21 11:30:37 -05:00
parent a55136de1a
commit a857557c78
11 changed files with 93 additions and 78 deletions

View File

@@ -239,7 +239,7 @@ Weve covered a lot about list comprehension in Python today! Were able to
For example, given this sandbox code pad of a long and messy list comprehension, how can you refactor to remove all usage of list comprehensions? Avoid using `map`, `filter` or other list helpers, either. Simply use nested `for` loops and `if` conditionals to match the behavior as it was before.
<iframe src="https://app.coderpad.io/sandbox?question_id=177671" width="704" height="500" loading="lazy"></iframe>
<iframe src="https://app.coderpad.io/sandbox?question_id=177671" loading="lazy"></iframe>
This is an open-ended question meant to challenge your skills youve learned throughout the article!