92e6c4fe1e
Extends DownloadSettings with 4 additional options: - Name: File name pattern for downloaded files (existed) - Disabled: Disables downloads - Originals: Only download files stored in "originals" folder - MediaRaw: Include RAW image files - MediaSidecar: Include metadata sidecar files (JSON, XMP, YAML)
20 lines
358 B
Go
20 lines
358 B
Go
package clean
|
|
|
|
import "strings"
|
|
|
|
const (
|
|
ClipType = 64
|
|
ClipShortType = 8
|
|
)
|
|
|
|
// Clip shortens a string to the given number of characters, and removes all leading and trailing white space.
|
|
func Clip(s string, maxLen int) string {
|
|
s = strings.TrimSpace(s)
|
|
l := len(s)
|
|
|
|
if l <= maxLen {
|
|
return s
|
|
} else {
|
|
return strings.TrimSpace(s[:maxLen])
|
|
}
|
|
}
|