View Single Post
Old 08-21-2025, 09:30 PM   #854
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 11,128
Karma: 77213683
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
Copy to Clipboard action to string together several columns and produce a preformatted string to paste into FanFicFare's personal.ini:

Code:
program:

authortitle = strcat('## ', $author, ' - ', $title);
storyid = strcat('(', $id, ')');
storyUrl = 	switch_if(
				$publisher=='Archive of Our Own', strcat('https://archiveofourown.org/works/', select($identifier, 'ao3')),
				$publisher=='FanFiction.net', strcat('https://www.fanfiction.net/s/', select($identifier, 'ffnet'), '/1/'),
				''
			);
settings = $$#fanficsettings;

copySection = strcat(authortitle, ' ', storyid, character('newline'), '[', storyUrl, ']',character('newline'),settings)
If #fanficsettings is undefined, it copies 'None'. Is it possible to omit this instead?
ownedbycats is offline   Reply With Quote