Changeset 3c72e49
- Timestamp:
- Jul 15, 2024, 9:00:44 PM (4 months ago)
- Branches:
- master
- Children:
- 0e7db91
- Parents:
- 972a737
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
content/articles.org
r972a737 r3c72e49 11 11 (split-string (buffer-string) "\n" t))) 12 12 13 ;; Sort by modified date14 (setq list-of-posts (sort (directory-files-and-attributes "./en/posts" nil ".org$")15 #'(lambda (x y) (time-less-p (nth 6 y) (nth 6 x)))))13 ;; Sort by modified date 14 (setq list-of-posts (sort (directory-files-and-attributes "./en/posts" nil ".org$") 15 #'(lambda (x y) (time-less-p (nth 6 y) (nth 6 x))))) 16 16 17 17 (defun make-links (str) … … 37 37 (split-string (buffer-string) "\n" t))) 38 38 39 ;; Sort by modified date40 (setq list-of-posts (sort (directory-files-and-attributes "./posts" nil ".org$")41 #'(lambda (x y) (time-less-p (nth 6 y) (nth 6 x)))))39 ;; Sort by modified date 40 (setq list-of-posts (sort (directory-files-and-attributes "./posts" nil ".org$") 41 #'(lambda (x y) (time-less-p (nth 6 y) (nth 6 x))))) 42 42 43 43 (defun make-links (str)
Note:
See TracChangeset
for help on using the changeset viewer.