Quote:
Originally Posted by Tanjamuse
Is there a way to remove the freeformtags from AO3 from the original tags column. I've already made a custom column where they end up, but I would love the opportunity to not have them in my tags column as well.
|
In past, the AO3 adapter was hard coded to include freeformtags in genre and therefore the only way to not have them in the calibre tags was to add your own include_subject_tags param that didn't include genre.
I've posted a
test version that instead uses include_in_* lines in defaults.ini to define genre and category in AO3. That way you can change them to not include freeformtags.
Code:
[archiveofourown.org]
## AO3 doesn't have anything it calls 'genre'. The adapter used to be
## hardcoded to include the site specific metadata freeformtags &
## ao3categories in the standard metadata field genre. By making it
## configurable, users can change it.
include_in_genre: freeformtags, ao3categories
## AO3 uses the word 'category' differently than most sites. The
## adapter used to be hardcoded to include the site specific metadata
## fandom in the standard metadata field category. By making it
## configurable, users can change it.
include_in_category:fandoms
I don't remember off hand why they were hard coded instead of doing it this way from the start--this seems better.