No need to re-link videos or hrefs.
This commit is contained in:
parent
650b16df32
commit
bd644e3788
@ -296,15 +296,6 @@ def summarize(doc):
|
|||||||
for child in summary.children:
|
for child in summary.children:
|
||||||
result.append(child)
|
result.append(child)
|
||||||
|
|
||||||
# Update summary links and hrefs
|
|
||||||
for v in result.find_all('video') + result.find_all('image'):
|
|
||||||
if 'src' in v.attrs and ':' not in v['src']:
|
|
||||||
v['src'] = '/blog/' + v['src'].lstrip('/')
|
|
||||||
|
|
||||||
for v in result.find_all('a'):
|
|
||||||
if 'href' in v.attrs and ':' not in v['href']:
|
|
||||||
v['href'] = '/blog/' + v['href'].lstrip('/')
|
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def render_index(docs, dest_top):
|
def render_index(docs, dest_top):
|
||||||
|
Loading…
Reference in New Issue
Block a user