{"id":18256664,"url":"https://github.com/honmaple/emacs-maple-note","last_synced_at":"2026-02-09T12:03:42.594Z","repository":{"id":145149470,"uuid":"171587054","full_name":"honmaple/emacs-maple-note","owner":"honmaple","description":null,"archived":false,"fork":false,"pushed_at":"2021-04-21T15:37:00.000Z","size":579,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-11T19:44:21.058Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/honmaple.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-02-20T02:34:20.000Z","updated_at":"2021-04-21T15:37:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"34195b63-e277-4f2f-99a4-95630b407757","html_url":"https://github.com/honmaple/emacs-maple-note","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/honmaple/emacs-maple-note","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honmaple%2Femacs-maple-note","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honmaple%2Femacs-maple-note/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honmaple%2Femacs-maple-note/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honmaple%2Femacs-maple-note/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/honmaple","download_url":"https://codeload.github.com/honmaple/emacs-maple-note/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/honmaple%2Femacs-maple-note/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29264176,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T04:11:57.159Z","status":"ssl_error","status_checked_at":"2026-02-09T04:11:56.117Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T10:23:08.269Z","updated_at":"2026-02-09T12:03:42.590Z","avatar_url":"https://github.com/honmaple.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"* emacs-maple-note\n  My blog management base on tabulated-list like `list-packages`\n\n** Screenshot\n   [[https://github.com/honmaple/emacs-maple-note/blob/master/screenshot/example.png]]\n\n** Quickstart\n   #+begin_src elisp\n   (use-package maple-note\n     :quelpa (:fetcher github :repo \"honmaple/emacs-maple-note\")\n     :commands (maple-note)\n     :config\n     (setq maple-note-basedir \"~/Git/pelican/content\"))\n   #+end_src\n\n   Or alternatively, you can download the repository and install manually by doing:\n   #+BEGIN_SRC sehll\n   git clone https://github.com/honmaple/emacs-maple-note ~/.emacs.d/site-lisp/maple-note\n   #+END_SRC\n\n   #+begin_src elisp\n   (use-package maple-note\n     :ensure nil\n     :commands (maple-note))\n   #+end_src\n\n** Customize\n   #+begin_src elisp\n   (setq maple-note-file-match \"^[^.]*\\\\.\\\\(org\\\\|md\\\\|markdown\\\\)$\")\n   (setq maple-note-basedir \"~/Git/pelican/content\")\n   (setq maple-note-postdir \"posts/\")\n   (setq maple-note-draftdir \"drafts/\")\n   #+end_src\n\n*** Customize fields\n    #+begin_src elisp\n    (defun custom-meta-name(file name)\n      `(,name\n        face maple-note-face\n        follow-link t\n        action (lambda(\u0026optional _) (find-file (tabulated-list-get-id)))))\n\n    (setq maple-note-fields\n          '((date     . ((\"DATE\"     16 t) . custom-meta-name))\n            (title    . ((\"TITLE\"    64 t) . custom-meta-name))\n            (category . ((\"CATEGORY\" 20 t) . custom-meta-name))))\n\n    (setq maple-note-sort-field '(\"DATE\" . t))\n    #+end_src\n\n*** Customize template\n    #+begin_src elisp\n    (defun custom-file-template(file time)\n      (let ((template '(\"---\"\n                        \"title: %s\"\n                        \"author: honmaple\"\n                        \"date: %s\"\n                        \"modified: %s\"\n                        \"category:\"\n                        \"tags:\"\n                        \"slug: %s\"\n                        \"---\")))\n        (format (string-join template \"\\n\") (file-name-base file) time time (file-name-base file))))\n\n    (setq maple-note-template-alist\n          '((markdown-mode . custom-file-template)))\n    #+end_src\n\n*** Customize meta parser\n    #+begin_src elisp\n    (defun custom-file-meta (file)\n      (with-temp-buffer\n        (insert-file-contents file)\n        (list :title (file-name-base file)\n              :date \"2025-10-12 10:10\"\n              :draft \"true\"\n              :category \"Linux\"\n              :tags \"linux,emacs\")))\n\n    (setq maple-note-meta-alist\n          '((markdown-mode . custom-file-meta)))\n    #+end_src\n\n** Keybind\n   - *q* - quit window\n   - *r* - refresh list\n   - *w* - create new post\n   - *D* - delete current post\n   - *f* - filter post list\n   - *s* - switch status between publish and draft\n   - *l* - move to next field\n   - *h* - move to prev field\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhonmaple%2Femacs-maple-note","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhonmaple%2Femacs-maple-note","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhonmaple%2Femacs-maple-note/lists"}