backers =Define
backers =Get Sponsor Backers
getSponsorBackers: (opts={}) ->Check
return '' if !opts.sponsorsPrepare
result = ''
sponsors = ''Handle
for sponsor in opts.sponsors
sponsors += "- #{sponsor.markdown}"Check
return result if !sponsorsConcatenate
result += """ Thank you to these amazing people for contributing finances to this project:
""" if opts.header isnt false
result += sponsorsReturn
return resultGet Contributor Backers
getContributorBackers: (opts={}) ->Check
return '' if !opts.contributorsPrepare
result = ''
contributors = ''Handle
for contributor in opts.contributors
contributors += "- #{contributor.markdown}"Check
return result if !contributorsConcatenate
result += """ Thank you to these amazing people for contributing code to this project:
""" if opts.header isnt false
result += contributorsReturn
return resultGet Backers File
getBackersFile: (opts) ->Prepare
parts = []Prepare
result = ''Handle
for fn in @getFunctionsEndingWith('Backers')
parts.push fn.call(@, opts)
backers = parts.join('\n\n') or ''Check
return result if !backersConcatenate
result += """ """ if opts.header isnt false
result += backersReturn
return resultGet Backers Section
getBackersSection: (opts) -> return ''Export
module.exports = backers