org-generate.org 2.0 KB

project

elisp

{{pkg-name}}.el/

.github/

workflows/
test.yml

name: Main workflow on: [push, pull_request]

.gitignore

## .gitignore

-autoloads.el .elc /.keg

Keg

;; Keg

(source gnu melpa)

(package ({{pkg-name}} (recipe . ({{pkg-name}} :fetcher github :repo "conao3/{{pkg-name}}.el"))))

(dev-dependency cort)

LICENSE

GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

...

Makefile

## Makefile

all:

README.org

,,* Description {{description}}.

{{pkg-name}}.el

;;; {{pkg-name}}.el --- {{description}} -*- lexical-binding: t; -*-

;;; Code:

(defgroup {{pkg-name}} nil "{{description}}." :group 'convenience :link '(url-link :tag "Github" "https://github.com/conao3/{{pkg-name}}.el"))

(provide '{{pkg-name}}) ;;; {{pkg-name}}.el ends here

{{pkg-name}}-test.el

;;; {{pkg-name}}-tests.el --- Test definitions for {{pkg-name}} -*- lexical-binding: t; -*-

;;; Code:

(require 'cort) (require '{{pkg-name}})

;; (provide '{{pkg-name}}-tests) ;;; {{pkg-name}}-tests.el ends here