()
| 1727 | } |
| 1728 | |
| 1729 | func (rp *RawPost) Updated8601() string { |
| 1730 | if rp.Updated.IsZero() { |
| 1731 | return "" |
| 1732 | } |
| 1733 | return rp.Updated.Format("2006-01-02T15:04:05Z") |
| 1734 | } |
| 1735 | |
| 1736 | var imageURLRegex = regexp.MustCompile(`(?i)[^ ]+\.(gif|png|jpg|jpeg|avif|avifs|webp|jxl|image)$`) |
| 1737 |