Quote:
Originally Posted by citac
I feel like I need to do something about the huge number of freeform tags that would accumulate if I let them all be imported, but I'm uncertain about removing some tags.
|
Editing your include_subject_tags is important for managing tags in Calibre, that's the option that affects it. That's why I only have the prefix_* entries. On my setup, the freeform tags are put in a long-text type column that doesn't show up in the tag browser.
Quote:
Do I understand correctly that the first option in examples below will delete the tag, which the second would rename it??
Code:
freeformtags=>^(Alternate Universe)$=>
freeformtags=>^(Alternate Universe -)=>AU -
|
Yes.
Quote:
Also, I was curious about your icons but they don't appear in the .ini except the one for Not Bookmarked\, Not Subscribed:
Code:
icons_LIST=>^(Bookmarked\, Subscribed)$=>����
## Don't show bookmarked icon, don't show subscribed icon
icons_LIST=>^(Not Bookmarked\, Not Subscribed)$=>◈
## Don't show bookmarked icon, show subscribed icon
icons_LIST=>^(Not Bookmarked\, Subscribed)$=>��
## Show bookmarked icon, don't show subscribed icon
icons_LIST=>^(Bookmarked\, Not Subscribed)$=>��
|
Those are emojis, the forum converts them since they're unicode. Without the & prefix it's:
Code:
## Show bookmarked icon, show subscribed icon
icons_LIST=>^(Bookmarked\, Subscribed)$=>#128278;#128276;
## Don't show bookmarked icon, don't show subscribed icon
icons_LIST=>^(Not Bookmarked\, Not Subscribed)$=>#9672;
## Don't show bookmarked icon, show subscribed icon
icons_LIST=>^(Not Bookmarked\, Subscribed)$=>#128276;
## Show bookmarked icon, don't show subscribed icon
icons_LIST=>^(Bookmarked\, Not Subscribed)$=>#128278;
You can see the result on the preview I posted on my previous message.
Reference:
https://www.alansofficespace.com/uni...nicd128499.htm
Quote:
How does one even begin to decide which things to keep and which to remove, especially faced with an archive of fics that stretched back many years? And this is just for Ao3 fics; I don't even want to think about the mass of .txt files from old webrings and personal websites...
|
Yeah that's why I only stick to Ao3 😅
I attached how my setup looks, it's not the whole thing but honestly I don't have the energy to explain it step by step. If you have more questions I'll try to answer them. You can check out FanFicFare's wiki too.
https://github.com/JimmXinu/FanFicFa...i/CustomOutput
https://github.com/JimmXinu/FanFicFa...dataManagement
https://github.com/JimmXinu/FanFicFare/wiki/INI-File
https://github.com/JimmXinu/FanFicFa...eplaceMetadata
I've shared my setup previously in this thread as well, most of it is still the same.