in app/redact/TextFinder.scala [34:38]
def findWebsite(document: PDDocument, domain: String): List[FoundText] = {
val textFinder = new RegexFinder(s"""$domain(\\/[^ ]*)?""".r)
textFinder.getText(document)
textFinder.locations.result()
}