-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
odd character #10
Comments
I see, thanks for the explanation. I see the "i" with a circle around it, so yes it is coming through, font substitution in web browsers works pretty well these days. If you are unsure it works on all devices, you could instead use a symbol from https://fontawesome.com/v4/icons/ and explicitly include this font in your website ... it has a nice info circle - I also think playing with the fontsize a bit would help distinguish it from the rest of the text. Perhaps even figuring out how to make it float off the left margin or something would make it clear this is just a separate indicator and not part of the "expected output text". |
This is great feedback. I'll look into some options for a more clear presentation - this one was quick to implement, but as you can see, it needs replacing with something better now. Thanks! |
This seems to work: custom.css: code.info:before {
content: "\f05a";
font-family: "FontAwesome";
font-style: normal;
font-size: 12pt;
margin-left: -30px;
display: block;
position: absolute;
color: #718c00
}
code.info {
font-style: italic;
}
code.error:before {
content: "\f071";
font-family: "FontAwesome";
font-style: normal;
font-size: 12pt;
margin-left: -30px;
display: block;
position: absolute;
color: #ff0000;
}
code.error {
color: #ff0000;
} Which appears like this: |
This "outputs" block in Functions and Definitions has an odd character prefix "🛈 "
outputs
🛈 "Hello Lean"
I believe it's coming from this CSS, but none of the other outputs listed have this prefix:
The text was updated successfully, but these errors were encountered: