aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;; ---------------------------------------------------------------------