网文创作助手

;;; web-novel.el --- 网文创作助手 -*- lexical-binding: t -*- ;; Author: 猫叔 ;; Version: 2.3 ;; Package-Requires: ((emacs "25.1")) ;; Keywords: tools, writing ;;;

;;; web-novel.el --- 网文创作助手 -*- lexical-binding: t -*-

;; Author: 猫叔
;; Version: 2.3
;; Package-Requires: ((emacs "25.1"))
;; Keywords: tools, writing

;;; Commentary:
;; 网文创作辅助工具,提供创作建议和写作指导

;;; Code:

(require 'cl-lib)

(defgroup web-novel nil
  "网文创作助手配置组"
  :group 'tools
  :prefix "web-novel-")

(defcustom web-novel-default-type '玄幻
  "默认创作类型"
  :type '(choice (const :tag "玄幻" 玄幻)
                (const :tag "都市" 都市)
                (const :tag "科幻" 科幻)
                (const :tag "仙侠" 仙侠)