-
Notifications
You must be signed in to change notification settings - Fork 331
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
add support for admonition text blocks #1400
Changes from 1 commit
5b0ea54
25a1f75
d226685
d78bc33
4592833
e576196
cbe24cb
ef5e08c
0064462
a796199
64fa413
9c4808a
170a37b
7a214c9
ff614bf
57c9a34
b1b1a79
8f58d01
f624732
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
This file was deleted.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
<%= if nodes_map.modules != [] do %> | ||
<section class="details-list"> | ||
<h2 id="modules" class="section-heading">Modules</h2> | ||
milmazz marked this conversation as resolved.
Show resolved
Hide resolved
|
||
<h2 id="modules">Modules</h2> | ||
<div class="summary"> | ||
<%= for module_node <- Enum.sort_by(nodes_map.modules, & &1.id) do | ||
api_reference_entry_template(module_node) | ||
|
@@ -15,7 +15,7 @@ | |
|
||
<%= if nodes_map.tasks != [] do %> | ||
<section class="details-list"> | ||
<h2 id="tasks" class="section-heading">Mix Tasks</h2> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. REVIEWER: Not needed, this is injected by |
||
<h2 id="tasks">Mix Tasks</h2> | ||
<div class="summary"> | ||
<%= for task_node <- nodes_map.tasks do | ||
api_reference_entry_template(task_node) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am thinking we should let the default font-size do its job so we keep everything consistent. WDYT? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe I am wrong but does
rem
not just reflect a bigger font relative to the default font size, or did you mean that this style should have the default font size?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn’t notice the rem but yeah, what I mean is to keep it as is. :)