forked from paulgribble/CBootCamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.el
38 lines (36 loc) · 2 KB
/
go.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(require 'ox-publish)
(setq org-export-with-sub-superscripts nil)
(setq org-publish-project-alist
'(
("CBootCamp"
:base-directory "org/"
:base-extension "org"
:publishing-directory "~/github/CBootCamp/html"
:publishing-function org-html-publish-to-html
:recursive t
:htmlized-source t
:section-numbers nil
:html-postamble "<hr />%a | %d<br>This <span xmlns:dct=\"http://purl.org/dc/terms/\" href=\"http://purl.org/dc/dcmitype/Text\" rel=\"dct:type\">work</span> is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by/4.0/\">Creative Commons Attribution 4.0 International License</a><br><a rel=\"license\"href=\"http://creativecommons.org/licenses/by/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"http://i.creativecommons.org/l/by/4.0/80x15.png\" /></a><br />"
:language en
:html-link-home "index.html"
:html-link-up "index.html"
:html-head "<link rel=\"stylesheet\" type=\"text/css\" href=\"mystyle.css\" /><script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-52544521-1', 'auto');ga('send', 'pageview');</script>"
)
("CBootCamp_html"
:base-directory "html/"
:base-extension "css\\|html"
:publishing-directory "/ssh:[email protected]:~/gribblelab.org/CBootCamp/"
:publishing-function org-publish-attachment
:recursive t
)
("CBootCamp_code"
:base-directory "code/"
:base-extension "c\\|h\\|txt\\|csv"
:publishing-directory "/ssh:[email protected]:~/gribblelab.org/CBootCamp/code/"
:publishing-function org-publish-attachment
:recursive t
)
("org" :components ("CBootCamp" "CBootCamp_html" "CBootCamp_code"))))
(org-publish-project "CBootCamp")
(org-publish-project "CBootCamp_html")
(org-publish-project "CBootCamp_code")