-
-
Notifications
You must be signed in to change notification settings - Fork 93
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
use aside
for margin-note
#235
base: master
Are you sure you want to change the base?
Conversation
address racket#205 Note `aside` cannot be used for the inline version `margin-note*`
@shriram from your suggestion this pr makes scribble use the aside tag for margin notes this (from more.scrbl)
renders as the following html with no visible difference. <blockquote class="refpara">
<blockquote class="refcolumn">
<aside class="refcontent">
<p>
Set your
<span class="stt">PATH</span>
environment variable so you can use
<span class="stt">raco</span>
and other Racket command line functions. On Mac OS:
<span class="stt">sudo sh -c </span>
'
<span class="stt">echo "/Applications/Racket v</span>
<span class="stt">7.7</span>
<span class="stt">/bin"</span>
<span class="stt"></span>
<span class="stt">>> /etc/paths.d/racket</span>
' (This assumes you have installed
Racket in the
<span class="stt">Applications</span>
folder). On Windows: add the racket
<span class="stt">bin</span>
path to
<span class="ssansserif">Path</span>
in
<span class="ssansserif">Environment Variables</span>
(under
<span class="ssansserif">System Properties</span>
,
<span class="ssansserif">Advanced</span>
tab)
</p>
</aside>
</blockquote>
</blockquote> |
Hello! Any feedback? |
ping, any thoughts on this? @shriram |
I think having
|
@sorawee Sorry I did the minimum to provide the fix. I didn't have time to unpick the repeated use of I know the multiple kr PS In my heart I want to do this at pure semantic html and css styles but It is major project and I'm no expert on css/html - so I don't even know if that is a realistic goal: I can't turn <blockquote class="refpara">
<blockquote class="refcolumn">
<aside class="refcontent"> into <aside class="refpara refcolumn refcontent"> because at the very least because margins are summative. (and I had to look up if I needed spaces or commas in the |
I was suggesting to turn your proposed change:
to:
|
Ok. |
@sorawee done. |
Apparently
inside |
Thank you @sorawee your diligence is appreciated! I think this is the correct fix but I'm having trouble testing. |
adding |
address #205
Note
aside
cannot be used for the inline versionmargin-note*