mirror of
https://github.com/cheat/cheat.git
synced 2025-12-27 17:32:07 +01:00
Re-wrote from scratch in Golang
- Re-implemented the project in Golang, and deprecated Python entirely - Implemented several new, long-requested features - Refactored cheatsheets into a separate repository
This commit is contained in:
15
internal/sheet/tagged.go
Normal file
15
internal/sheet/tagged.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package sheet
|
||||
|
||||
// Tagged returns true if a sheet was tagged with `needle`
|
||||
func (s *Sheet) Tagged(needle string) bool {
|
||||
|
||||
// if any of the tags match `needle`, return `true`
|
||||
for _, tag := range s.Tags {
|
||||
if tag == needle {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
// otherwise, return `false`
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user