Skip to content

Instantly share code, notes, and snippets.

@iwilsonq
Last active May 8, 2018 05:23
Show Gist options
  • Save iwilsonq/d7b27aadda908c308813e0264ca49dbd to your computer and use it in GitHub Desktop.
Save iwilsonq/d7b27aadda908c308813e0264ca49dbd to your computer and use it in GitHub Desktop.
func hasLanguageDelimiter(line string) bool {
if !strings.Contains(line, "```") {
return false
}
for _, lang := range languages {
if strings.Contains(line, lang) {
return true
}
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment