doc: Improve install section
- Add :exports both - Improve install section - Add sample code for use-package/straight
This commit is contained in:
parent
3eedcc534a
commit
8d0375498b
14
README.org
14
README.org
|
@ -1,7 +1,7 @@
|
||||||
* ob-pasp
|
* ob-pasp
|
||||||
Org-Babel mode to execute Potassco Answer Set Programming code within Org-mode with =clingo=.
|
Org-Babel mode to execute Potassco Answer Set Programming code within Org-mode with =clingo=.
|
||||||
|
|
||||||
#+begin_src pasp
|
#+begin_src pasp :exports both
|
||||||
child(C, P) :- parent(P, C).
|
child(C, P) :- parent(P, C).
|
||||||
parent(vader, luke).
|
parent(vader, luke).
|
||||||
#show child/2.
|
#show child/2.
|
||||||
|
@ -30,16 +30,20 @@ The package is not (yet) available on MELPA, so the package should be installed
|
||||||
|
|
||||||
To be able to use =ob-pasp= you will need to install =clingo= cli.
|
To be able to use =ob-pasp= you will need to install =clingo= cli.
|
||||||
|
|
||||||
|
|
||||||
*** Doomemacs
|
*** Doomemacs
|
||||||
|
|
||||||
In your =$DOOMDIR/package.el= file, you might want to set up the following:
|
In your =$DOOMDIR/package.el= file, you might want to set up the following:
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(package! pasp-mode) ;; Add syntax highlighting for Potassco ASP
|
(package! pasp-mode) ;; Add syntax highlighting for Potassco ASP
|
||||||
(package! ob-pasp
|
(package! ob-pasp
|
||||||
:recipe (:host github :repo "UncleSamulus/ob-pasp"))
|
:recipe (:host github :repo "samuelortion/ob-pasp"))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
*** TODO Spacemacs :help-wanted:
|
||||||
|
|
||||||
** TODO Spacemacs
|
*** =use-package= with =straight=
|
||||||
** TODO =use-package= / =straight=
|
The following instructions should work, but I am not sure.
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package ob-pasp
|
||||||
|
:straight (ob-pasp :type git :host github :repo "samuelortion/ob-pasp"))
|
||||||
|
#+end_src
|
||||||
|
|
Loading…
Reference in New Issue