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
Is there any way to specify a different (monospace) font for the HTML output? To get the output HTML in the font SF Mono, for example, I tried:
... | aha -y 'font-family: "SF Mono"'
, but the HTML output is still in what looks like Courier. Disclaimer: I don't really know CSS.
The text was updated successfully, but these errors were encountered:
Me neither. 😁 So I guess to problem is, that the whole aha outout is inside <pre> tags. The font of them you can define with css:
<pre>
pre { font-family: "SF Mono"; }
I saved this as an own file and gave it to the -c parameter of aha, e.g. if you save the css setting as mono.css like this:
-c
… | aha -c mono.css
Hope this helps!
Sorry, something went wrong.
No branches or pull requests
Is there any way to specify a different (monospace) font for the HTML output? To get the output HTML in the font SF Mono, for example, I tried:
, but the HTML output is still in what looks like Courier. Disclaimer: I don't really know CSS.
The text was updated successfully, but these errors were encountered: