if last < -100000 {
return nil, errors.New("size of result exeeds limit")
}
- size := int(((last - first) / inc) + 1)
+ size := ((last - first) / inc) + 1
// sanity check
if size <= 0 || size > 2000 {
p.WordCount = len(p.PlainWords())
}
- p.FuzzyWordCount = int((p.WordCount+100)/100) * 100
+ p.FuzzyWordCount = (p.WordCount + 100) / 100 * 100
if p.isCJKLanguage {
- p.ReadingTime = int((p.WordCount + 500) / 501)
+ p.ReadingTime = (p.WordCount + 500) / 501
} else {
- p.ReadingTime = int((p.WordCount + 212) / 213)
+ p.ReadingTime = (p.WordCount + 212) / 213
}
}
case "monthname":
return p.Date.Month().String(), nil
case "day":
- return fmt.Sprintf("%02d", int(p.Date.Day())), nil
+ return fmt.Sprintf("%02d", p.Date.Day()), nil
case "weekday":
return strconv.Itoa(int(p.Date.Weekday())), nil
case "weekdayname":
}
}
- return string(tmpContent), nil
+ return tmpContent, nil
}
var isInnerShortcodeCache = struct {
}
}
- for _, file := range []*source.File(*s.Files) {
+ for _, file := range *s.Files {
if file.Path() == refPath {
target = file
break
}
func (s *Site) permalinkStr(plink string) string {
- return helpers.MakePermalink(string(viper.GetString("BaseURL")), helpers.URLizeAndPrep(plink)).String()
+ return helpers.MakePermalink(viper.GetString("BaseURL"), helpers.URLizeAndPrep(plink)).String()
}
func (s *Site) NewNode() *Node {
section := l.content[l.pos+len(m.quote) : l.pos+posLastQuote+1]
fields := bytes.Fields(section)
- l.w.Write([]byte(m.quote))
+ l.w.Write(m.quote)
for i, f := range fields {
if f[0] == '/' {
l.w.Write(l.path)