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 RedCloth 3.0.4 something like:
text2 = %[|_.a|_.b|_.c| {background:rgb(240,245,250);color:red}. |a|red|row|] puts RedCloth.new(text).to_html()
Produces:
<table> <tr> <th>a</th> <th>b</th> <th>c</th> </tr> <tr style="background:rgb(240,245,250);color:red;"> <td>a</td> <td>red</td> <td>row</td> </tr> </table>
But with 4.3.2 results in:
4.3.2
<table> <tr> <th>a</th> <th>b</th> <th>c</th> </tr> </table> {background:rgb(240,245,250);color:red}. |a|red|row|
Is there something I'm missing with CSS colors expressed as RGB values?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In RedCloth 3.0.4 something like:
Produces:
But with
4.3.2
results in:Is there something I'm missing with CSS colors expressed as RGB values?
The text was updated successfully, but these errors were encountered: