Skip to content
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

overline in markdown #12

Open
drom opened this issue Mar 19, 2017 · 1 comment
Open

overline in markdown #12

drom opened this issue Mar 19, 2017 · 1 comment

Comments

@drom
Copy link
Member

drom commented Mar 19, 2017

Overline is popular text attribute in datasheets.

Can be done with CSS:

o {
    text-decoration: overline;
}
<o>WR</o>

missing from markdown CSS

can be added as "combining overline" unicode caracter: &#x305;

@asmblur
Copy link

asmblur commented May 1, 2021

I noticed that your method of doing overline doesn't work well with many fonts. W̅R̅ is what you see.
I used <pre style="font-family: monospace;">W&#x305;R&#x305;</pre> to get this:

W̅R̅

Also, for some reason the things in your example ds that should be overlined are underlined, except for

R̅D̅ and W̅R̅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants