Quote:
Originally Posted by icecold
Is it possible to add when a chapter was last edited using custom output for SB/SV/QQ and/or Royalroad? I'm not sure if the metadata's there to do that like you can with when the threadmark was posted.
Also is it possible to add the author of the threadmark via custom output? It feels possible put I'm not sure. This question comes from omakes in quests usually not being the author of the quest itself.
|
Yes and no.
You can include date and kwords from threadmarks. We used to have author available too, but XenForo stopped including author in threadmarks.
From defaults.ini, remember to uncomment lines you want to use:
Code:
## base_xenforoforum stories with threadmarks have a few additional
## pieces of metadata available that most adapters don't. 'date';
## 'words'--word count as number only: "12104"; and kwords--the
## threadmark human-readable string for word count with parens:
## "(12.1k)" These can be used with custom output (see
## https://github.com/JimmXinu/FanFicFare/wiki/CustomOutput ) or with
## chapter_title_*_pattern settings.
## Examples for html & epub:
#[base_xenforoforum:html]
#tocpage_entry:
# <a href="#section${index04}">${chapter}</a> ${date} ${kwords}<br />
#[base_xenforoforum:epub]
#tocpage_entry:
# <a href="file${index04}.xhtml">${chapter}</a> ${date} ${kwords}<br /><br />
## The 'date' value for chapters mentioned above can be formated with
## datethreadmark_format. Otherwise it will default to
## dateCreated_format
#datethreadmark_format:%%Y-%%m-%%d %%H:%%M
## The basic pattern used when not using add_chapter_numbers or
## mark_new_chapters
#chapter_title_def_pattern:${title} ${date}
## Pattern used with add_chapter_numbers, but not mark_new_chapters
#chapter_title_add_pattern:${number}. ${title} ${date}
## Pattern used with mark_new_chapters, but not add_chapter_numbers
## (new) is just text and can be changed.
#chapter_title_new_pattern:(new) ${title} ${date}
## Pattern used with add_chapter_numbers and mark_new_chapters
## (new) is just text and can be changed.
#chapter_title_addnew_pattern:${number}. (new) ${title} ${date}