1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00
Find a file
Andrew Lawrence He 62aa375bce Fix code block in Pill 14
We used the wrong code fragment.
2017-08-29 12:31:09 -07:00
pills Fix code block in Pill 14 2017-08-29 12:31:09 -07:00
.editorconfig initialize an editorconfig 2017-08-13 09:54:34 -04:00
.gitignore Initial commit of nix pills 2017-08-11 18:22:51 -04:00
book.xml Fixed preface in book.xml 2017-08-16 19:33:16 -04:00
default.nix Add proper versioning 2017-08-19 10:56:31 -04:00
README.md readem on contributing 2017-08-12 18:08:23 -04:00
release.nix Add proper versioning 2017-08-19 10:56:31 -04:00
style.css Initial commit of nix pills 2017-08-11 18:22:51 -04:00

When starting a new Pill, comment on the tracking issue which one you're doing. If you need help, ask there. If you make progress but don't finish in one go, make a PR anyway! I'm trying to not edit things as I go, in order to not get bogged down.

How I've built and tested:

nix-build && firefox result/share/doc/nix-pills/index.html

Emacs config for a nice docbook experience:

let
 pkgs = import <nixpkgs> {};
 inherit (pkgs) emacsPackagesNg docbook5 writeText;

 schemas = writeText "schemas.xml" ''
   <locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0">
     <documentElement localName="section" typeId="DocBook"/>
     <documentElement localName="chapter" typeId="DocBook"/>
     <documentElement localName="article" typeId="DocBook"/>
     <documentElement localName="book" typeId="DocBook"/>
     <typeId id="DocBook" uri="${docbook5}/xml/rng/docbook/docbookxi.rnc" />
   </locatingRules>
 '';

in emacsPackagesNg.emacsWithPackages (epkgs: [
 (emacsPackagesNg.trivialBuild {
   pname = "nix-docbook-mode";
   version = "1970-01-01";
   src = writeText "default.el" ''
     (eval-after-load 'rng-loc
       '(add-to-list 'rng-schema-locating-files "${schemas}"))
     (global-set-key (kbd "<C-return>") 'nxml-complete)
   '';
 })
])

Then you can use the keys:

  • C-c C-b to finish & close a tag
  • C-c C-f to close a tag
  • C-return to auto-complete a tag or attribute.