Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created March 3, 2019 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/88bb97efece81c6959ddaada8f30f839 to your computer and use it in GitHub Desktop.
Save ryantm/88bb97efece81c6959ddaada8f30f839 to your computer and use it in GitHub Desktop.
/nix/store/7pslrm3z81ja1qr5wn2mnlb841fzdv3k-sigil-0.9.12
├── bin
│   └── sigil
├── lib
│   └── sigil
│   ├── libhunspell.so
│   ├── libsigilgumbo.so
│   └── sigil
├── nix-support
│   ├── propagated-build-inputs
│   └── propagated-user-env-packages
└── share
├── applications
│   └── sigil.desktop
├── pixmaps
│   └── sigil.png
└── sigil
├── examples
│   ├── clip_entries.ini
│   └── search_entries.ini
├── hunspell_dictionaries
│   ├── About.txt
│   ├── COPYING_GPLv2.txt
│   ├── COPYING_GPLv3.txt
│   ├── COPYING_LGPL_v2.0.txt
│   ├── COPYING_LGPL_v2.1.txt
│   ├── de_DE.aff
│   ├── de_DE.dic
│   ├── en_GB.aff
│   ├── en_GB.dic
│   ├── en_US.aff
│   ├── en_US.dic
│   ├── es.aff
│   ├── es.dic
│   ├── fr.aff
│   ├── fr.dic
│   ├── hyph_de_DE.dic
│   ├── hyph_en_GB.dic
│   ├── hyph_en_US.dic
│   ├── hyph_es.dic
│   ├── hyph_fr.dic
│   ├── license.txt
│   ├── README_de_DE_frami.txt
│   ├── README_en_GB.txt
│   ├── README_en_US.txt
│   ├── README_es_ANY.txt
│   ├── README_extension_owner.txt
│   ├── README_fr.txt
│   ├── README_hyph_de.txt
│   ├── README_hyph_en_GB.txt
│   ├── README_hyph_en_US.txt
│   ├── README_hyph_es_ANY.txt
│   ├── README_hyph_fr.txt
│   └── README.txt
├── plugin_launchers
│   └── python
│   ├── bookcontainer.py
│   ├── compatibility_utils.py
│   ├── css_parser
│   │   ├── _codec2.py
│   │   ├── _codec3.py
│   │   ├── codec.py
│   │   ├── COPYING
│   │   ├── COPYING.LESSER
│   │   ├── css
│   │   │   ├── colors.py
│   │   │   ├── csscharsetrule.py
│   │   │   ├── csscomment.py
│   │   │   ├── cssfontfacerule.py
│   │   │   ├── cssimportrule.py
│   │   │   ├── cssmediarule.py
│   │   │   ├── cssnamespacerule.py
│   │   │   ├── csspagerule.py
│   │   │   ├── cssproperties.py
│   │   │   ├── cssrulelist.py
│   │   │   ├── cssrule.py
│   │   │   ├── cssstyledeclaration.py
│   │   │   ├── cssstylerule.py
│   │   │   ├── cssstylesheet.py
│   │   │   ├── cssunknownrule.py
│   │   │   ├── cssvalue.py
│   │   │   ├── cssvariablesdeclaration.py
│   │   │   ├── cssvariablesrule.py
│   │   │   ├── __init__.py
│   │   │   ├── marginrule.py
│   │   │   ├── property.py
│   │   │   ├── selectorlist.py
│   │   │   ├── selector.py
│   │   │   └── value.py
│   │   ├── cssproductions.py
│   │   ├── CSSUTILS_README.txt
│   │   ├── encutils
│   │   │   └── __init__.py
│   │   ├── errorhandler.py
│   │   ├── _fetchgae.py
│   │   ├── _fetch.py
│   │   ├── helper.py
│   │   ├── __init__.py
│   │   ├── parse.py
│   │   ├── prodparser.py
│   │   ├── profiles.py
│   │   ├── README.md
│   │   ├── sac.py
│   │   ├── script.py
│   │   ├── scripts
│   │   │   ├── csscapture.py
│   │   │   ├── csscombine.py
│   │   │   ├── cssparse.py
│   │   │   └── __init__.py
│   │   ├── serialize.py
│   │   ├── settings.py
│   │   ├── stylesheets
│   │   │   ├── __init__.py
│   │   │   ├── medialist.py
│   │   │   ├── mediaquery.py
│   │   │   ├── stylesheetlist.py
│   │   │   └── stylesheet.py
│   │   ├── tokenize2.py
│   │   ├── util.py
│   │   └── version.py
│   ├── epub_utils.py
│   ├── inputcontainer.py
│   ├── launcher.py
│   ├── opf_parser.py
│   ├── outputcontainer.py
│   ├── pluginhunspell.py
│   ├── preferences.py
│   ├── quickparser.py
│   ├── sigil_bs4
│   │   ├── AUTHORS.txt
│   │   ├── builder
│   │   │   ├── _html5lib.py
│   │   │   ├── _htmlparser.py
│   │   │   ├── __init__.py
│   │   │   └── _lxml.py
│   │   ├── COPYING.txt
│   │   ├── dammit.py
│   │   ├── diagnose.py
│   │   ├── element.py
│   │   ├── __init__.py
│   │   └── sigil_custom_changes_to_bs4-4.4.0.patch.txt
│   ├── sigil_gumbo_bs4_adapter.py
│   ├── sigil_gumboc.py
│   ├── sigil_gumboc_tags.py
│   ├── unipath.py
│   ├── validationcontainer.py
│   ├── validationresult.py
│   └── wrapper.py
├── polyfills
│   └── MathJax.js
├── python3lib
│   ├── cssreformatter.py
│   ├── gencheck.py
│   ├── metadata_utils.py
│   ├── metaproc2.py
│   ├── metaproc3.py
│   ├── ncxdata.py
│   ├── ncxgenerator.py
│   ├── opf2data.py
│   ├── opf3data.py
│   ├── opf_newparser.py
│   ├── sanitycheck.py
│   ├── updatechecker.py
│   ├── xmlprocessor.py
│   └── xmlsanitycheck.py
└── translations
├── sigil_af.qm
├── sigil_az.qm
├── sigil_ca.qm
├── sigil_cs.qm
├── sigil_da_DK.qm
├── sigil_de.qm
├── sigil_el_GR.qm
├── sigil_en.qm
├── sigil_es.qm
├── sigil_fi.qm
├── sigil_fr.qm
├── sigil_gl.qm
├── sigil_hu_HU.qm
├── sigil_id_ID.qm
├── sigil_it.qm
├── sigil_ja.qm
├── sigil_ko.qm
├── sigil_nl.qm
├── sigil_pl.qm
├── sigil_pt_BR.qm
├── sigil_pt.qm
├── sigil_ru.qm
├── sigil_sr.qm
├── sigil_th.qm
├── sigil_tr.qm
├── sigil_uk.qm
└── sigil_zh.qm
22 directories, 170 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment