spaCy/website
Ines Montani f37863093a 💫 Replace ujson, msgpack and dill/pickle/cloudpickle with srsly (#3003)
Remove hacks and wrappers, keep code in sync across our libraries and move spaCy a few steps closer to only depending on packages with binary wheels 🎉

See here: https://github.com/explosion/srsly

    Serialization is hard, especially across Python versions and multiple platforms. After dealing with many subtle bugs over the years (encodings, locales, large files) our libraries like spaCy and Prodigy have steadily grown a number of utility functions to wrap the multiple serialization formats we need to support (especially json, msgpack and pickle). These wrapping functions ended up duplicated across our codebases, so we wanted to put them in one place.

    At the same time, we noticed that having a lot of small dependencies was making maintainence harder, and making installation slower. To solve this, we've made srsly standalone, by including the component packages directly within it. This way we can provide all the serialization utilities we need in a single binary wheel.

    srsly currently includes forks of the following packages:

        ujson
        msgpack
        msgpack-numpy
        cloudpickle



* WIP: replace json/ujson with srsly

* Replace ujson in examples

Use regular json instead of srsly to make code easier to read and follow

* Update requirements

* Fix imports

* Fix typos

* Replace msgpack with srsly

* Fix warning
2018-12-03 01:28:22 +01:00
..
_includes Fix formatting 2018-07-24 22:40:49 +02:00
api 💫 Replace ujson, msgpack and dill/pickle/cloudpickle with srsly (#3003) 2018-12-03 01:28:22 +01:00
assets Update model directory JS [ci skip] 2018-08-16 16:54:50 +02:00
models 💫 Port master changes over to develop (#2979) 2018-11-29 16:30:29 +01:00
universe 💫 Port master changes over to develop (#2979) 2018-11-29 16:30:29 +01:00
usage replace user-facing references to "sbd" with "sentencizer" (#2985) 2018-11-30 21:22:40 +01:00
_data.json Update features 2017-11-10 19:05:10 +01:00
_harp.json 💫 Port master changes over to develop (#2979) 2018-11-29 16:30:29 +01:00
_layout.jade 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00
404.jade Update layout templates, partials and mixins 2017-10-03 14:20:13 +02:00
index.jade 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00
package.json 💫 Port master changes over to develop (#2979) 2018-11-29 16:30:29 +01:00
README.md Fix formatting and wording 2018-05-07 21:24:35 +02:00
robots.txt.jade Fix robots and meta 2017-06-05 20:07:52 +02:00
styleguide.jade 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00

spacy.io website and docs

The spacy.io website is implemented in Jade (aka Pug), and is built or served by Harp. Jade is an extensible templating language with a readable syntax, that compiles to HTML. The website source makes extensive use of Jade mixins, so that the design system is abstracted away from the content you're writing. You can read more about our approach in our blog post, "Rebuilding a Website with Modular Markup".

Viewing the site locally

sudo npm install --global harp
git clone https://github.com/explosion/spaCy
cd spaCy/website
harp server

This will serve the site on http://localhost:9000.

Making changes to the site

The docs can always use another example or more detail, and they should always be up to date and not misleading. If you see something, say something we always appreciate a pull request. To quickly find the correct file to edit, simply click on the "Suggest edits" button at the bottom of a page.

File structure

While all page content lives in the .jade files, article meta (page titles, sidebars etc.) is stored as JSON. Each folder contains a _data.json with all required meta for its files.

Markup language and conventions

Jade/Pug is a whitespace-sensitive markup language that compiles to HTML. Indentation is used to nest elements, and for template logic, like if/else or for, mainly used to iterate over objects and arrays in the meta data. It also allows inline JavaScript expressions.

For an overview of Harp and Jade, see this blog post. For more info on the Jade/Pug syntax, check out their documentation.

In the spacy.io source, we use 4 spaces to indent and hard-wrap at 80 characters.

p This is a very short paragraph. It stays inline.

p
    |  This is a much longer paragraph. It's hard-wrapped at 80 characters to
    |  make it easier to read on GitHub and in editors that do not have soft
    |  wrapping enabled. To prevent Jade from interpreting each line as a new
    |  element, it's prefixed with a pipe and two spaces. This ensures that no
    |  spaces are dropped  for example, if your editor strips out trailing
    |  whitespace by default. Inline links are added using the inline syntax,
    |  like this: #[+a("https://google.com") Google].

Note that for external links, +a("...") is used instead of a(href="...") it's a mixin that takes care of adding all required attributes. If possible, always use a mixin instead of regular HTML elements. The only plain HTML elements we use are:

Element Description
p paragraphs
code inline code
em italicized text
strong bold text

Mixins

Each file includes a collection of custom mixins that make it easier to add content components no HTML or class names required.

For example:

//- Bulleted list

+list
    +item This is a list item.
    +item This is another list item.

//- Table with header

+table([ "Header one", "Header two" ])
    +row
        +cell Table cell
        +cell Another one

    +row
        +cell And one more.
        +cell And the last one.

//- Headlines with optional permalinks

+h(2, "link-id") Headline 2 with link to #link-id

Code blocks are implemented using +code or +aside-code (to display them in the right sidebar). A . is added after the mixin call to preserve whitespace:

+code("This is a label").
    import spacy
    en_nlp = spacy.load('en')
    en_doc = en_nlp(u'Hello, world. Here are two sentences.')

You can find the documentation for the available mixins in _includes/_mixins.jade.

Helpers for linking to content

Aside from the +a() mixin, there are three other helpers to make linking to content more convenient.

Linking to GitHub

Since GitHub links can be long and tricky, you can use the gh() function to generate them automatically for spaCy and all repositories owned by explosion:

// Syntax: gh(repo, [file], [branch])

gh("spaCy", "spacy/matcher.pyx")
// https://github.com/explosion/spaCy/blob/master/spacy/matcher.pyx

Linking to source

+src() generates a link with a little source icon to indicate it's linking to a code source. Ideally, it's used in combination with gh():

+src(gh("spaCy", "spacy/matcher.pyx")) matcher.pxy

Linking to API reference

+api() generates a link to a page in the API docs, with an added icon. It should only be used across the workflows in the usage section, and only on the first mention of the respective class.

It takes the slug of an API page as the argument. You can also use anchors to link to specific sections they're usually the method or property names.

+api("tokenizer") #[code Tokenizer]
+api("doc#similarity") #[code Doc.similarity()]

Most common causes of compile errors

Problem Fix
JSON formatting errors make sure last elements of objects don't end with commas and/or use a JSON linter
unescaped characters like < or > and sometimes ' in inline elements replace with encoded version: &lt;, &gt; etc.
"Cannot read property 'call' of undefined" / "foo is not a function" make sure mixin names are spelled correctly and mixins file is included with the correct path
"no closing bracket found" make sure inline elements end with a ], like #[code spacy.load('en')] and for nested inline elements, make sure they're all on the same line and contain spaces between them (bad: #[+api("doc")#[code Doc]])

If Harp fails and throws a Jade error, don't take the reported line number at face value it's often wrong, as the page is compiled from templates and several files.