Add option for locking fics on AO3 but not here
This commit is contained in:
parent
6b32fb0048
commit
92a982c833
2 changed files with 8 additions and 3 deletions
|
@ -401,6 +401,10 @@ def ficgen(ficno,unique=False,output="output.html",local=False):
|
||||||
try:
|
try:
|
||||||
if fileread.ao3slug:
|
if fileread.ao3slug:
|
||||||
filewrite.write("<li class=\"ao3link\"><a ")
|
filewrite.write("<li class=\"ao3link\"><a ")
|
||||||
|
try:
|
||||||
|
if fileread.ao3locked:
|
||||||
|
filewrite.write("class=\"locked\" ")
|
||||||
|
except:
|
||||||
if fileread.locked:
|
if fileread.locked:
|
||||||
filewrite.write("class=\"locked\" ")
|
filewrite.write("class=\"locked\" ")
|
||||||
filewrite.write("href=\"https://archiveofourown.org/works/" + str(fileread.ao3slug) + "\">AO3</a></li>\n")
|
filewrite.write("href=\"https://archiveofourown.org/works/" + str(fileread.ao3slug) + "\">AO3</a></li>\n")
|
||||||
|
|
|
@ -35,6 +35,7 @@ location = [""]
|
||||||
# recipsite = "" # ao3, dw, tumblr
|
# recipsite = "" # ao3, dw, tumblr
|
||||||
locked = False
|
locked = False
|
||||||
ao3slug =
|
ao3slug =
|
||||||
|
# ao3locked =
|
||||||
html = True
|
html = True
|
||||||
pdf = True
|
pdf = True
|
||||||
epub = True
|
epub = True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue