emacs(docs): remove org-specific elements I forgot to remove
deploy / build (push) Successful in 2m36s Details

This commit is contained in:
Lucien Cartier-Tilet 2024-02-10 11:03:35 +01:00
parent fa1194552d
commit b1c7a41a73
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 0 additions and 7 deletions

View File

@ -850,7 +850,6 @@ update its fontlock.
#+end_src #+end_src
*** CommonLisp *** CommonLisp
:END:
In Lisp buffers, lets enable ~parinfer-rust-mode~. In Lisp buffers, lets enable ~parinfer-rust-mode~.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package lisp-mode (use-package lisp-mode
@ -914,7 +913,6 @@ configuration for StumpWM]].
#+end_src #+end_src
*** EmacsLisp *** EmacsLisp
:END:
This package displays the functions arglist or variables docstring This package displays the functions arglist or variables docstring
in the echo area at the bottom of the frame. Quite useful indeed. in the echo area at the bottom of the frame. Quite useful indeed.
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -1030,7 +1028,6 @@ package.
#+end_src #+end_src
*** Python *** Python
:END:
First, we need to set up the main Python mode. With this, well also First, we need to set up the main Python mode. With this, well also
add Python to the list of LSP languages and to the list of languages add Python to the list of LSP languages and to the list of languages
org-babel supports. org-babel supports.
@ -1339,7 +1336,6 @@ development. First, lets install the most important package,
#+end_src #+end_src
*** Web programming *** Web programming
:END:
[[https://emmet.io/][Emmet]] is a powerful templating engine that can generate through simple [[https://emmet.io/][Emmet]] is a powerful templating engine that can generate through simple
CSS-like expression some HTML to avoid the user writing everything by CSS-like expression some HTML to avoid the user writing everything by
hand. hand.
@ -1445,7 +1441,6 @@ Auto-completion for ~emmet-mode~, ~html-mode~, and ~web-mode~.
#+end_src #+end_src
**** CSS **** CSS
:END:
Lets customize a bit the built-in CSS mode. Lets customize a bit the built-in CSS mode.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package css-mode (use-package css-mode
@ -1512,7 +1507,6 @@ activate when I open ~.less~ files by default. Lets fix that.
#+end_src #+end_src
**** Javascript **** Javascript
:END:
~javascript-mode~ is meh at best, while ~rjsx-mode~ (Real JSX) is much ~javascript-mode~ is meh at best, while ~rjsx-mode~ (Real JSX) is much
better: it supports both JavaScript and ~.jsx~ files for React and better: it supports both JavaScript and ~.jsx~ files for React and
Next.JS. Next.JS.
@ -1591,7 +1585,6 @@ And finally, here is a formatter for JavaScript.
#+end_src #+end_src
**** Typescript **** Typescript
:END:
Typescript is a safer alternative to JavaScript. Lets install its major mode then. Typescript is a safer alternative to JavaScript. Lets install its major mode then.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package typescript-mode (use-package typescript-mode