summaryrefslogtreecommitdiffstats
path: root/2021/cfp.org
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2021-08-19 00:33:14 -0400
committerSacha Chua <sacha@sachachua.com>2021-08-19 00:33:14 -0400
commitdd894a7e2be5ae1951929bbd8c50848c0a45b279 (patch)
tree2b18d3653f3b0342cb466eaff61553d51400548e /2021/cfp.org
parent4cad85b2c06b8076077cfd7c2b674d3c9ec40829 (diff)
downloademacsconf-wiki-dd894a7e2be5ae1951929bbd8c50848c0a45b279.tar.xz
emacsconf-wiki-dd894a7e2be5ae1951929bbd8c50848c0a45b279.zip
Rename to 2021/cfp.org, try exporting from it, office hours sched
Diffstat (limited to '')
-rw-r--r--2021/cfp.org (renamed from 2021/emacsconf-2021-cfp.org)88
1 files changed, 57 insertions, 31 deletions
diff --git a/2021/emacsconf-2021-cfp.org b/2021/cfp.org
index f3dd36c0..f2a5ca0f 100644
--- a/2021/emacsconf-2021-cfp.org
+++ b/2021/cfp.org
@@ -3,6 +3,45 @@
#+date: November 27 and 28, 2021
#+options: author:nil
+#+begin_export md
+[[!meta title="Call for Proposals"]]
+[[!meta copyright="Copyright &copy; 2020 Amin Bandali, Sacha Chua, David Bremner<br />Copyright &copy; 2021 Amin Bandali, Sacha Chua, Leo Vivier, Sebastian Crane"]]
+<!-- This file is exported from cfp.org, so don't modify it directly. --->
+#+end_export
+
+* COMMENT How to export this file :noexport:
+
+As of the time of writing this document (Org mode version 9.3.7), the
+Org links library (=ol.el=) does not yet recognize =ircs= link types,
+and will throw an error if you try to export a file containing them,
+such as this file.
+
+To work around that, you can use something along the lines of the
+Emacs Lisp code below, by either adding it to your init file, or by
+putting the point in the code block and hitting =C-c C-v e= (that is,
+hold Ctrl, then hit c followed by v, then release Ctrl, and hit e) to
+evaluate the code, working around the issue only for the current
+session.
+
+#+begin_src emacs-lisp :results silent
+(org-link-set-parameters
+ "ircs"
+ :export
+ (lambda (link description format)
+ "Export an ircs link.
+See `org-link-parameters' for details about LINK, DESCRIPTION and
+FORMAT."
+ (let ((desc (or description link)))
+ (pcase format
+ (`html (format "<a href=\"ircs:%s\">%s</a>" link desc))
+ (`md (format "[%s](ircs:%s)" desc link))
+ (_ nil)))))
+#+end_src
+
+[[elisp:(org-md-export-to-markdown)][Export this file to Markdown]]
+
+* Call for Proposals
+
[[https://emacsconf.org/2021/][EmacsConf 2021]] will be a virtual conference on *November 27 and 28,
2021 (Sat-Sun)*. If you'd like to present at the conference, please
[[https://emacsconf.org/2021/cfp/][submit your proposal]] by *September 30, 2021*.
@@ -120,9 +159,13 @@ the EmacsConf organizers, but we'd love to have the help of other
members of the Emacs community as well. If you are a more experienced
Emacs user and would like to help with this, please [[https://emacsconf.org/contact/][get in touch]]!
-Our first office hour this year is planned for Saturday, August 14,
-from 3pm to 4pm UTC with zaeph (Leo Vivier) at the following
-BigBlueButton room: https://bbb.emacsverse.org/b/ban-qye-fd1-5kw.
+You can find the schedule for upcoming office hours (along with other
+Emacs events) at https://www.emacswiki.org/emacs/Usergroups . You can
+also get an iCal feed at
+https://emacslife.com/calendar/emacs-calendar.ics or get HTML/Org
+files in various timezones at https://emacslife.com/calendar/ . When
+in session, the office hours will be held in this BigBlueButton room:
+https://bbb.emacsverse.org/b/ban-qye-fd1-5kw.
* Submitting your proposal
@@ -171,6 +214,17 @@ of [[https://www.gnu.org/philosophy/free-sw.html][free software]], much like pre
An article describing our infrastructure and tools is underway,
and will be announced on the emacsconf-discuss list when published.
+* Additional links
+
+#+begin_export md
+[emacs]: https://www.gnu.org/software/emacs/
+[freesw]: https://www.gnu.org/philosophy/free-sw.html
+[libera-emacsconf]: ircs://irc.libera.chat:6697/emacsconf
+[chat]: https://chat.emacsconf.org
+[emacsconf-discuss]: https://lists.gnu.org/mailman/listinfo/emacsconf-discuss
+[emacsconf-org]: https://lists.gnu.org/mailman/listinfo/emacsconf-org
+[emacsconf-org-private]: https://lists.gnu.org/mailman/listinfo/emacsconf-org-private
+#+end_export
* COMMENT Copyright & License
@@ -188,31 +242,3 @@ version.
A copy of these two licenses is available on the EmacsConf wiki, in
the [[https://emacsconf.org/COPYING.CC-BY-SA][COPYING.CC-BY-SA]] and [[https://emacsconf.org/COPYING.GPL][COPYING.GPL]] files.
-* COMMENT How to export this file
-
-As of the time of writing this document (Org mode version 9.3.7), the
-Org links library (=ol.el=) does not yet recognize =ircs= link types,
-and will throw an error if you try to export a file containing them,
-such as this file.
-
-To work around that, you can use something along the lines of the
-Emacs Lisp code below, by either adding it to your init file, or by
-putting the point in the code block and hitting =C-c C-v e= (that is,
-hold Ctrl, then hit c followed by v, then release Ctrl, and hit e) to
-evaluate the code, working around the issue only for the current
-session.
-
-#+begin_src emacs-lisp :results silent
-(org-link-set-parameters
- "ircs"
- :export
- (lambda (link description format)
- "Export an ircs link.
-See `org-link-parameters' for details about LINK, DESCRIPTION and
-FORMAT."
- (let ((desc (or description link)))
- (pcase format
- (`html (format "<a href=\"ircs:%s\">%s</a>" link desc))
- (`md (format "[%s](ircs:%s)" desc link))
- (_ nil)))))
-#+end_src