mirror of
https://github.com/vale981/ablog
synced 2025-03-05 17:21:38 -05:00
PostList: render without em-tag. Formating should be done in css, not (hidden and) hardcoded
This commit is contained in:
parent
697e599ba8
commit
04a8eba7d5
1 changed files with 1 additions and 3 deletions
|
@ -426,9 +426,7 @@ def process_postlist(app, doctree, docname):
|
|||
ref['classes'] = []
|
||||
ref['names'] = []
|
||||
ref['internal'] = True
|
||||
emp = nodes.emphasis()
|
||||
ref.append(emp)
|
||||
emp.append(nodes.Text(text_type(item)))
|
||||
ref.append(nodes.Text(text_type(item)))
|
||||
else:
|
||||
ref = _missing_reference(app, item.xref, docname)
|
||||
par.append(ref)
|
||||
|
|
Loading…
Add table
Reference in a new issue