aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-10-31 00:27:21 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-10-31 00:27:21 -0400
commit43234a2040f2ed07e58d2341c52cf365ba889925 (patch)
treee45d8c7c4cd80fe2b770d41742952850901591dc
parentFix EXWM buffer naming (diff)
downloadmmosmacs-43234a2040f2ed07e58d2341c52cf365ba889925.tar.gz
mmosmacs-43234a2040f2ed07e58d2341c52cf365ba889925.tar.bz2
mmosmacs-43234a2040f2ed07e58d2341c52cf365ba889925.zip
Setup stuff to export notes to website
-rw-r--r--init.el23
1 files changed, 23 insertions, 0 deletions
diff --git a/init.el b/init.el
index f02d8a8..e390081 100644
--- a/init.el
+++ b/init.el
@@ -1301,6 +1301,19 @@
1301 org-ditaa-jar-option "-oS --svg") 1301 org-ditaa-jar-option "-oS --svg")
1302 1302
1303 1303
1304;; ---------------------------------
1305;; Export org to HTML
1306;; ------------------
1307;; Sometimes I want to share my notes
1308;; ---------------------------------
1309
1310(use-package htmlize
1311 :straight t
1312 :config
1313 (setq org-html-htmlize-output-type 'css))
1314
1315
1316
1304 1317
1305 1318
1306;; --------------------------------------------------------------------- 1319;; ---------------------------------------------------------------------
@@ -1454,6 +1467,16 @@
1454(add-hook 'org-babel-after-execute-hook 'org-redisplay-inline-images) 1467(add-hook 'org-babel-after-execute-hook 'org-redisplay-inline-images)
1455 1468
1456 1469
1470;; ---------------------------------
1471;; HTTP Server
1472;; -----------
1473;; Test some websites why don't you
1474;; ---------------------------------
1475
1476(use-package simple-httpd
1477 :straight t)
1478
1479
1457 1480
1458 1481
1459;; --------------------------------------------------------------------- 1482;; ---------------------------------------------------------------------