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
Input
<div class="code-container"> <ul class="root code-block"> <li> <span class="type">Bar</span> </li> <li> <ul class="content"> <li> <span class="indentation"> </span> ...truncated...
Output
<div class="code-container"> <ul class="root code-block"> <li> <span class="type">Bar</span> </li> <li> <ul class="content"> <li> <span class="indentation"></span> ...truncated...
Problem The two spaces in <span class="indentation"> </span> are gone.
<span class="indentation"> </span>
My css looks like this
.indentation { display: inline-block; white-space: pre; }
In case mangling whitespace is unavoidable consider:
white-space: pre;
The text was updated successfully, but these errors were encountered:
sibprogrammer
No branches or pull requests
Input
Output
Problem
The two spaces in
<span class="indentation"> </span>
are gone.My css looks like this
In case mangling whitespace is unavoidable consider:
white-space: pre;
associated with itThe text was updated successfully, but these errors were encountered: