lisp123456

Untitled

Jul 30th, 2021
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. (setq org-publish-project-alist
  2. '(("org-notes"
  3. :base-directory "~/org/"
  4. :base-extension "org"
  5. :publishing-directory "~/ashok-khanna.github.io/"
  6. :publishing-function org-html-publish-to-html
  7. :exclude "PrivatePage.org" ;; regexp
  8. :headline-levels 3
  9. :section-numbers nil
  10. :with-toc nil
  11. :html-doctype "html5"
  12. :html-link-home "https://www.math.dev"
  13. :html-link-up "index.html"
  14. :html-head-include-default-style nil
  15. :html-head-include-scripts t
  16. :html5-fancy t
  17. :recursive t
  18. :html-head " <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">
  19. <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
  20. <link rel=\"stylesheet\" type=\"text/css\" href=\"/css/style.css\" />"
  21. :html-preamble t
  22. :html-preamble-format (("en" "<div id=\"logo\"><a href=\"https://www.math.dev\">Math.Dev</a></div>"))
  23. :html-postamble-format (("en" "<p class=\"Date\">Last updated: %d</p><script src=\"/scripts/main.js\"></script>"))
  24. :html-postamble t)
  25.  
  26. ("org-static"
  27. :base-directory "~/org/"
  28. :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
  29. :publishing-directory "~/ashok-khanna.github.io/"
  30. :recursive t
  31. :publishing-function org-publish-attachment)
  32.  
  33. ("org" :components ("org-notes" "org-static"))))
Advertisement
Add Comment
Please, Sign In to add comment