changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: tryin to fix broken publish pipeline

changeset 614: f03dbf6338ed
parent 613: 9ffe93dbe9b9
child 615: ae4983075819
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 19 Aug 2024 21:52:55 -0400
files: emacs/default.el emacs/lib/publish.el
description: tryin to fix broken publish pipeline
     1.1--- a/emacs/default.el	Mon Aug 19 20:24:03 2024 -0400
     1.2+++ b/emacs/default.el	Mon Aug 19 21:52:55 2024 -0400
     1.3@@ -94,6 +94,7 @@
     1.4    ;; eglot-x ;; LSP extensions
     1.5    org-web-tools ;; web parsing
     1.6    citeproc ;; citations
     1.7+   htmlize ;; html export
     1.8    all-the-icons all-the-icons-dired all-the-icons-ibuffer ;; icons
     1.9    hide-mode-line) ;; ui
    1.10    ;; bbdb
    1.11@@ -194,12 +195,11 @@
    1.12 (add-hook 'tab-bar-mode-hook #'tab-bar-history-mode)
    1.13 
    1.14 ;;; Lisp
    1.15-(use-package slime-company
    1.16-  :ensure t)
    1.17-
    1.18 (use-package slime
    1.19   :ensure t
    1.20   :init
    1.21+  (use-package slime-company
    1.22+    :ensure t)
    1.23   (require 'slime-autoloads)
    1.24   (require 'slime-cape)
    1.25   (setq slime-contribs '(slime-fancy
     2.1--- a/emacs/lib/publish.el	Mon Aug 19 20:24:03 2024 -0400
     2.2+++ b/emacs/lib/publish.el	Mon Aug 19 21:52:55 2024 -0400
     2.3@@ -185,8 +185,6 @@
     2.4 ;;           (inc-suffixf ref)))
     2.5 ;;       ref)))
     2.6 
     2.7-;; (advice-add #'org-export-get-reference :override #'org-export-get-reference-title)
     2.8-
     2.9 ;;;###autoload
    2.10 (defun publish (&optional sitemap static force async)
    2.11   "publish `rwest-io' content.
    2.12@@ -202,5 +200,6 @@
    2.13   (let ((default-directory project-dir))
    2.14     (message (format "publishing from %s" default-directory))    
    2.15     (org-publish "compiler.company" force async)))
    2.16+
    2.17 (provide 'publish)
    2.18 ;;; publish.el ends here