Try to silence org-lint

This commit is contained in:
Gerard Vermeulen 2023-06-25 14:00:01 +02:00
parent a330023a58
commit 381d209d9a

View File

@ -58,7 +58,7 @@ invoke Emacs again.
#+caption[Prepare the user-emacs-directory without =ssh= access]: #+caption[Prepare the user-emacs-directory without =ssh= access]:
#+caption: Clone and initialize the user-emacs-directory without =ssh= access. #+caption: Clone and initialize the user-emacs-directory without =ssh= access.
#+name: lst:prepare-user-emacs-directory-with-https #+name: lst:prepare-user-emacs-directory-with-https
#+begin_src shell -n :noeval :tangle no #+begin_src shell -n :eval never :tangle no
cd ~ cd ~
git clone https://forge.chapril.org/gav451/emacs.d.git .emacs.d git clone https://forge.chapril.org/gav451/emacs.d.git .emacs.d
make --directory=.emacs.d init make --directory=.emacs.d init
@ -68,7 +68,7 @@ emacs &
#+caption[Prepare the =user-emacs-directory= with =ssh= access]: #+caption[Prepare the =user-emacs-directory= with =ssh= access]:
#+caption: Clone and initialize the user-emacs-directory with =ssh= access. #+caption: Clone and initialize the user-emacs-directory with =ssh= access.
#+name: lst:prepare-user-emacs-directory-with-ssh #+name: lst:prepare-user-emacs-directory-with-ssh
#+begin_src shell -n :noeval :tangle no #+begin_src shell -n :eval never :tangle no
cd ~ cd ~
git clone ssh://gitea@forge.chapril.org:222/gav451/emacs.d.git .emacs.d git clone ssh://gitea@forge.chapril.org:222/gav451/emacs.d.git .emacs.d
make --directory=.emacs.d init make --directory=.emacs.d init
@ -1238,7 +1238,7 @@ may hang or die.
#+header: :comments no #+header: :comments no
#+header: :tangle-mode (identity #o755) #+header: :tangle-mode (identity #o755)
#+name: lst:qutebrowser-userscript #+name: lst:qutebrowser-userscript
#+begin_src python -n :noeval :tangle org-store-link #+begin_src python -n :eval never :tangle org-store-link
#!/usr/bin/env python #!/usr/bin/env python
from urllib.parse import urlencode from urllib.parse import urlencode
from os import environ, execvp from os import environ, execvp
@ -1764,7 +1764,7 @@ or src_emacs-lisp{(magit-push-current-to-upstream)}.
#+caption[Forking and branching on Github or Gitlab]: #+caption[Forking and branching on Github or Gitlab]:
#+caption: Forking and branching on Github or Gitlab. #+caption: Forking and branching on Github or Gitlab.
#+name: lst:forking-and-branching-remote-repositories #+name: lst:forking-and-branching-remote-repositories
#+begin_src shell -n :noeval #+begin_src shell -n :eval never
# Clone the repository # Clone the repository
git clone git@github.com:gav451/engrave-faces engrave-faces-fork git clone git@github.com:gav451/engrave-faces engrave-faces-fork
cd engrave-face-fork cd engrave-face-fork
@ -2524,7 +2524,7 @@ else:
:END: :END:
Set ~org-html-style-default~ option to add =HTML+CSS+JS= for ~mhtml-mode~: Set ~org-html-style-default~ option to add =HTML+CSS+JS= for ~mhtml-mode~:
#+begin_src emacs-lisp -n :eval no-export :exports never :results silent #+begin_src emacs-lisp -n :eval never :results silent
(setopt org-html-style-default "<style> (setopt org-html-style-default "<style>
#content { max-width: 60em; margin: auto; } #content { max-width: 60em; margin: auto; }
.title { text-align: center; .title { text-align: center;
@ -4565,7 +4565,7 @@ Valid SEL values are positive integers to enable or `nil' to disable elision."
#+caption: Script to dump a SBCL core for the Sly Common Lisp IDE. #+caption: Script to dump a SBCL core for the Sly Common Lisp IDE.
#+header: :tangle-mode (identity #o755) #+header: :tangle-mode (identity #o755)
#+name: lst:sbcl-core-for-sly #+name: lst:sbcl-core-for-sly
#+begin_src shell -n :noeval :tangle ~/bin/sbcl.core-for-sly #+begin_src shell -n :eval never :tangle ~/bin/sbcl.core-for-sly
#!/bin/sh #!/bin/sh
sbcl <<EOF sbcl <<EOF
@ -4621,7 +4621,7 @@ gpg --verify quicklisp.lisp.asc quicklisp.lisp
#+caption: Bootstrap =quicklisp=. #+caption: Bootstrap =quicklisp=.
#+header: :tangle-mode (identity #o755) #+header: :tangle-mode (identity #o755)
#+name: lst:bootstrap-quicklisp #+name: lst:bootstrap-quicklisp
#+begin_src shell -n :noeval :tangle ~/bin/quicklisp-sbcl-bootstrap #+begin_src shell -n :eval never :tangle ~/bin/quicklisp-sbcl-bootstrap
#!/bin/sh #!/bin/sh
sbcl --load ~/quicklisp.lisp <<EOF sbcl --load ~/quicklisp.lisp <<EOF
@ -5542,7 +5542,7 @@ max-line-length = 88
#+caption: Wrap =flake8= to remove color from text output. #+caption: Wrap =flake8= to remove color from text output.
#+header: :tangle-mode (identity #o755) #+header: :tangle-mode (identity #o755)
#+name: lst:flake8-nocolor #+name: lst:flake8-nocolor
#+begin_src shell -n :noeval :tangle ~/bin/flake8-nocolor #+begin_src shell -n :eval never :tangle ~/bin/flake8-nocolor
#!/bin/sh #!/bin/sh
flake8 "$@" | cat flake8 "$@" | cat
@ -5558,7 +5558,7 @@ flake8 "$@" | cat
#+caption: Wrap =ruff= to remove color from text output. #+caption: Wrap =ruff= to remove color from text output.
#+header: :tangle-mode (identity #o755) #+header: :tangle-mode (identity #o755)
#+name: lst:ruff-nocolor #+name: lst:ruff-nocolor
#+begin_src shell -n :noeval :tangle ~/bin/ruff-nocolor #+begin_src shell -n :eval never :tangle ~/bin/ruff-nocolor
#!/bin/sh #!/bin/sh
ruff "$@" | cat ruff "$@" | cat
@ -5675,7 +5675,7 @@ Available versions: 0.2.0, 0.1.1, 0.1.0
#+caption[Emacs interface to list outdated Python packages]: #+caption[Emacs interface to list outdated Python packages]:
#+caption: Emacs interface to list outdated Python packages. #+caption: Emacs interface to list outdated Python packages.
#+name: lst:pip-list-outdated #+name: lst:pip-list-outdated
#+begin_src emacs-lisp -n results silent #+begin_src emacs-lisp -n :results silent
(defvar pip-outdated-packages nil (defvar pip-outdated-packages nil
"Outdated Python packages.") "Outdated Python packages.")
@ -6817,7 +6817,7 @@ application/pdf; emacsclient %s
:CUSTOM_ID: sec:open-street-map :CUSTOM_ID: sec:open-street-map
:END: :END:
#+begin_src emacs-lisp -n :silent nil #+begin_src emacs-lisp -n :results silent
(when (ensure-package-installation 'osm) (when (ensure-package-installation 'osm)
(with-eval-after-load 'org (with-eval-after-load 'org
(require 'osm-ol))) (require 'osm-ol)))
@ -6832,7 +6832,7 @@ application/pdf; emacsclient %s
runs queries from a plain-text query sheet and displays results as images, runs queries from a plain-text query sheet and displays results as images,
pretty-printed =XML=, and pretty-printed =JSON=. pretty-printed =XML=, and pretty-printed =JSON=.
#+begin_src emacs-lisp -n :silent nil #+begin_src emacs-lisp -n :results silent
(ensure-package-installation 'restclient) (ensure-package-installation 'restclient)
#+end_src #+end_src
@ -6919,6 +6919,7 @@ sets the =webjump-sites= option.
:CUSTOM_ID: sec:reading-news-mail :CUSTOM_ID: sec:reading-news-mail
:END: :END:
Reading news and mail:
1. [[https://www.maketecheasier.com/emacs-usenet-reader-with-gnus/][How to use Emacs as a USENET reader with Gnus]] 1. [[https://www.maketecheasier.com/emacs-usenet-reader-with-gnus/][How to use Emacs as a USENET reader with Gnus]]
2. [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/master/gnus-guide-en.org][A practical guide to Gnus]] 2. [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/master/gnus-guide-en.org][A practical guide to Gnus]]
3. [[https://jao.io/blog/2021-05-17-reading-and-searching-gmane-with-gnus-fast.html][Fast reading and searching of Gmane.io with Gnus]] 3. [[https://jao.io/blog/2021-05-17-reading-and-searching-gmane-with-gnus-fast.html][Fast reading and searching of Gmane.io with Gnus]]
@ -6927,10 +6928,10 @@ sets the =webjump-sites= option.
6. [[http://www.bobnewell.net/publish/35years/gmailhacks.html][Stupid GMail hacks for Gnus]] 6. [[http://www.bobnewell.net/publish/35years/gmailhacks.html][Stupid GMail hacks for Gnus]]
7. [[http://www.bobnewell.net/publish/35years/gnuhacks.html][More stupid Gnus hacks]] 7. [[http://www.bobnewell.net/publish/35years/gnuhacks.html][More stupid Gnus hacks]]
8. [[https://config.phundrak.com/emacs.html][See Mu4e section of Phundrak's Emacs configuration]] 8. [[https://config.phundrak.com/emacs.html][See Mu4e section of Phundrak's Emacs configuration]]
Password management:
1. [[https://www.passwordstore.org/][Pass: the standard unix password manager]] 1. [[https://www.passwordstore.org/][Pass: the standard unix password manager]]
1. [[https://www.howtogeek.com/devops/how-to-use-pass-a-command-line-password-manager-for-linux-systems/][How to use Pass, a command-line password manager for Unix systems]] 2. [[https://www.howtogeek.com/devops/how-to-use-pass-a-command-line-password-manager-for-linux-systems/][How to use Pass, a command-line password manager for Unix systems]]
2. [[https://vitalyparnas.com/guides/pass/][Clever uses of pass, the Unix password manager]] 3. [[https://vitalyparnas.com/guides/pass/][Clever uses of pass, the Unix password manager]]
#+attr_latex: :booktabs yes :float table #+attr_latex: :booktabs yes :float table
#+caption[Gnus key bindings]: #+caption[Gnus key bindings]: