0
Solucionado

The font problem

Junjie LU hace 10 años actualizado por Rhio Kim hace 9 años 5
I update to v0.10.0 from v0.9.1, but I find that the font used in Editor area isn't monospace, and it makes the markdown looks terrible. The previous version(v0.9) doesn't has this problem. And I can't find how to configure the font, so I can't fix it.
I'm a user in Ubuntu amd64.

Respuesta

Respuesta
Solucionado
You can customize "editing area" & "viewer" using css.

1. Exec haroopad
2. Open preference window
3. Click editor tab or viewer tab
4. Click edit button in 'Your style' section
5. Edit your style & Import your local font using css
6. Save to your css file. e.g) MyStyle.css
7. Click reload button
8. Select your style.
+2
Same thing here. No monospaced font is a no-go! Or let the user chose whichever editor font he likes...
Respuesta
Solucionado
You can customize "editing area" & "viewer" using css.

1. Exec haroopad
2. Open preference window
3. Click editor tab or viewer tab
4. Click edit button in 'Your style' section
5. Edit your style & Import your local font using css
6. Save to your css file. e.g) MyStyle.css
7. Click reload button
8. Select your style.
No change on viewer even if I tried to create a user-defined .css file and edit it.
Can you post a sample of user-defined .css file?

markdown sample

```markdown
# title
contents
```

user-defined style

```css
h1 {
  color: red;
}

p {
 color: blue;
}
```

result

title


contents

First, you need to know about converted markdown(HTML).
* http://mrcoles.com/demo/markdown-css/