aboutsummaryrefslogtreecommitdiffstats
path: root/posts/nikola-in-orgmode.org
blob: c11a3fe0afd1796c93c5540996638f43117c40a1 (plain)
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
#+BEGIN_COMMENT
.. title: Nikola in orgmode
.. slug: nikola-in-orgmode
.. date: 2016-12-25 22:46:19 UTC+01:00
.. tags: testing
.. category:
.. link:
.. description:
.. type: text
#+END_COMMENT


Kind of boring header in this case. But I need to test other options
as the amazing codeblocks.

#+BEGIN_SRC emacs-lisp
(use-package jedi
  :ensure t
  :init
  (add-hook 'python-mode-hook 'jedi:setup)
  (add-hook 'python-mode-hook 'jedi:ac-setup))
#+END_SRC


#+BEGIN_SRC emacs-lisp
(global-hl-line-mode t)
#+END_SRC

#+BEGIN_SRC python :results output :exports both
print('yes, twire')
print('yes, twici')
#+END_SRC

#+RESULTS:
: yes, twice
: yes, twici
:
: