spaCy/website
Ines Montani 49cee4af92
💫 Interactive code examples, spaCy Universe and various docs improvements (#2274)
* Integrate Python kernel via Binder

* Add live model test for languages with examples

* Update docs and code examples

* Adjust margin (if not bootstrapped)

* Add binder version to global config

* Update terminal and executable code mixins

* Pass attributes through infobox and section

* Hide v-cloak

* Fix example

* Take out model comparison for now

* Add meta text for compat

* Remove chart.js dependency

* Tidy up and simplify JS and port big components over to Vue

* Remove chartjs example

* Add Twitter icon

* Add purple stylesheet option

* Add utility for hand cursor (special cases only)

* Add transition classes

* Add small option for section

* Add thumb object for small round thumbnail images

* Allow unset code block language via "none" value

(workaround to still allow unset language to default to DEFAULT_SYNTAX)

* Pass through attributes

* Add syntax highlighting definitions for Julia, R and Docker

* Add website icon

* Remove user survey from navigation

* Don't hide GitHub icon on small screens

* Make top navigation scrollable on small screens

* Remove old resources page and references to it

* Add Universe

* Add helper functions for better page URL and title

* Update site description

* Increment versions

* Update preview images

* Update mentions of resources

* Fix image

* Fix social images

* Fix problem with cover sizing and floats

* Add divider and move badges into heading

* Add docstrings

* Reference converting section

* Add section on converting word vectors

* Move converting section to custom section and fix formatting

* Remove old fastText example

* Move extensions content to own section

Keep weird ID to not break permalinks for now (we don't want to rewrite URLs if not absolutely necessary)

* Use better component example and add factories section

* Add note on larger model

* Use better example for non-vector

* Remove similarity in context section

Only works via small models with tensors so has always been kind of confusing

* Add note on init-model command

* Fix lightning tour examples and make excutable if possible

* Add spacy train CLI section to train

* Fix formatting and add video

* Fix formatting

* Fix textcat example description (resolves #2246)

* Add dummy file to try resolve conflict

* Delete dummy file

* Tidy up [ci skip]

* Ensure sufficient height of loading container

* Add loading animation to universe

* Update Thebelab build and use better startup message

* Fix asset versioning

* Fix typo [ci skip]

* Add note on project idea label
2018-04-29 02:06:46 +02:00
..
_includes 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00
api 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00
assets 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00
models 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00
universe 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00
usage 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00
_data.json Update features 2017-11-10 19:05:10 +01:00
_harp.json 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02: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 💫 Interactive code examples, spaCy Universe and various docs improvements (#2274) 2018-04-29 02:06:46 +02:00
README.md Update README.md 2016-12-25 14:43:40 +01: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.

For simplicity, all sites linked in the tutorials and showcase are also stored as JSON. So in order to edit those pages, there's no need to dig into the Jade files simply edit the _data.json.

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.