Skip to content

Commit

Permalink
Merge branch 'master' into header-dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
choldgraf authored May 17, 2022
2 parents 40acb52 + 8a24592 commit 726d965
Show file tree
Hide file tree
Showing 8 changed files with 66 additions and 129 deletions.
3 changes: 3 additions & 0 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:root {
--sd-color-primary: #f37726;
}
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"sphinxcontrib.youtube",
"sphinx_copybutton",
"sphinx_design",
"sphinx_examples",
"sphinx_tabs.tabs",
"sphinx_thebe",
"sphinx_togglebutton",
Expand Down Expand Up @@ -96,6 +97,7 @@
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]
html_css_files = ["custom.css"]
jupyter_execute_notebooks = "cache"
thebe_config = {
"repository_url": "https://github.com/binder-examples/jupyter-stacks-datascience",
Expand Down
175 changes: 53 additions & 122 deletions docs/content-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,20 @@ There are a few content blocks that are unique to this theme.

Here is what quotations and epigraphs look like in `sphinx-book-theme`:

A quote with no attribution:

```{example} Default markdown quotes
> Here's my quote, it's pretty neat.
> I wonder how many lines I can create with
> a single stream-of-consciousness quote.
> I could try to add a list of ideas to talk about.
> I suppose I could just keep going on forever,
> but I'll stop here.
```

Sometimes you'd like to draw more attention to a quote. To do so, use the `{epigraph}` directive.
Below is an epigraph, click the button to the right of it to show the code that was used
to generate it:

````{example} A basic epigraph
```{epigraph}
Here's my quote, it's pretty neat.
I wonder how many lines I can create with
Expand All @@ -42,36 +43,12 @@ I could try to add a list of ideas to talk about.
I suppose I could just keep going on forever,
but I'll stop here.
```

`````{toggle}
````
```{epigraph}
Here's my quote, it's pretty neat.
I wonder how many lines I can create with
a single stream-of-consciousness quote.
I could try to add a list of ideas to talk about.
I suppose I could just keep going on forever,
but I'll stop here.
```
````
`````

You can also add an attribution to epigraphs by adding a blank line,
followed by a line that starts with `--`. This will be renderered like so:

```{epigraph}
Here's my quote, it's pretty neat.
I wonder how many lines I can create with
a single stream-of-consciousness quote.
I could try to add a list of ideas to talk about.
I suppose I could just keep going on forever,
but I'll stop here.
-- Jo the Jovyan, *[the jupyter book docs](https://jupyterbook.org)*
```

`````{toggle}
````
````{example} Epigraphs with attribution
```{epigraph}
Here's my quote, it's pretty neat.
I wonder how many lines I can create with
Expand All @@ -83,65 +60,49 @@ but I'll stop here.
-- Jo the Jovyan, *[the jupyter book docs](https://jupyterbook.org)*
```
````
`````

## Sidebars

There are two different kinds of sidebar-like content in `sphinx-book-theme`,
typical `{sidebar}` directives, as well as a theme-specific `{margin}` directive.
This section covers both. Both allow you to place extra content
separately from your main content.

```{tip}
Sidebar content will generally overlap with the white space where your site's
table of contents lives. When the reader scrolls sidebar content into view, the
right TOC should hide itself automatically.
```

### Margin content
## Margin content

You can specify content that should exist in the right margin. This will behave
like a regular sidebar until the screen hits a certain width, at which point this
content will "pop out" to the right white space.

There are two ways to add content to the margin: via the `{margin}` directive, and via adding CSS classes to your own content.

#### Use a `{margin}` directive to add margin content
### Use a `{margin}` directive to add margin content

The `{margin}` directive allows you to create margin content with your own title and content block.
It is a wrapper around the Sphinx `{sidebar}` directive, and largely does its magic via CSS classes (see below).

Here's how you can use the `{margin}` directive:

````{example}
:no-container:
:reverse:
```{margin} **Here is my margin content**
It is pretty cool!
```

````
```{margin} **My margin title**
Here is my margin content, it is pretty cool!
```
````

#### Use CSS classes to add margin content
### Use CSS classes to add margin content

You may also directly add CSS classes to elements on your page in order to make them behave like margin content.
To do so, add the `margin` CSS class to any element on the page.
Many Sphinx directives allow you to directly add classes.
For example, here's the syntax to add a `margin` class to a `{note}` directive:

:::{note}
:class: margin
This note will be in the margin!
:::
```{example}
:no-container:
:reverse:
```
:::{note}
:class: margin
This note will be in the margin!
:::
```


This works for most elements on the page, but in general this works best for "parent containers" that are the top-most element of a bundle of content.

For example, we can even put a whole figure in the margin like so:
Expand All @@ -151,16 +112,10 @@ You can also put the whole figure in the margin if you like.
Here is a figure with a caption below. We'll add a note below to create
some vertical space to see better.

```{figure} images/cool.jpg
---
figclass: margin
alt: My figure text
name: myfig4
---
And here is my figure caption
```
````{example}
:no-container:
:reverse:
````
```{figure} images/cool.jpg
---
figclass: margin
Expand All @@ -174,118 +129,94 @@ And here is my figure caption
We can reference the figure with {ref}`myfig4`. Or a numbered reference like
{numref}`myfig4`.

#### Figure captions in the margin
### Figure captions in the margin

You can configure figures to use the margin for captions.
Here is a figure with a caption to the right.

```{figure} images/cool.jpg
---
width: 60%
figclass: margin-caption
alt: My figure text
name: myfig5
---
And here is my figure caption, if you look to the left, you can see that COOL is in big red letters. But you probably already noticed that, really I am just taking up space to see how the margin caption looks like when it is really long :-).
```
````{example}
:no-container:
:reverse:
And the text that produced it:

````
```{figure} images/cool.jpg
---
width: 60%
figclass: margin-caption
alt: My figure text
name: myfig5
---
And here is my figure caption, if you look to the left, you can see that COOL is in big red letters. But you probably already noticed that, really I am just taking up space to see how the margin caption looks like when it is really long :-)
And here is my figure caption, if you look to the left, you can see that COOL is in big red letters. But you probably already noticed that, really I am just taking up space to see how the margin caption looks like when it is really long :-).
```
````

We can reference the figure with {ref}`this reference <myfig5>`. Or a numbered reference like
{numref}`myfig5`.

### Content sidebars
### Examples of margin content

Content sidebars exist in-line with your text, but allow the rest of the
page to flow around them, rather than moving to the right margin.
To add content sidebars, use this syntax:
There are many kinds of content you can put in the margin, here are some examples.

````{sidebar} **My sidebar title**
```{note}
Here is my sidebar content, it is pretty cool!
```
![](images/cool.jpg)
````

Note how the content wraps around the sidebar to the right.
However, the sidebar text will still be in line with your content. There are
certain kinds of elements, such as "note" blocks and code cells, that may
clash with your sidebar. If this happens, try using a `{margin}` instead.

````
```{sidebar} **My sidebar title**
Here is my sidebar content, it is pretty cool!
```
````

### Adding content to margins and sidebars

Sidebar/margin content can include all kinds of things, such as code blocks:

````{margin} Code blocks in margins
```python
print("here is some python")
```
````
`````{example} Code blocks in the margin
:no-container:
:reverse:
`````
````{margin} Code blocks in margins
```python
print("here is some python")
```
````
`````

as well as admonitions and images:
`````{example} Admonitions and images in the margin
:no-container:
:reverse:
````{margin} **Notes in margins**
```{note}
Wow, a note with an image in a margin!
![](images/cool.jpg)
```
````

`````
````{margin} **Notes in margins**

## Sidebars

Sidebars exist in-line with your text, but allow the rest of the
page to flow around them, rather than moving to the right margin.

To add content sidebars, use this syntax:

`````{example}
:no-container:
````{sidebar} **My sidebar title**
```{note}
Wow, a note with an image in a margin!
![](images/cool.jpg)
Here is my sidebar content, it is pretty cool!
```
![](images/cool.jpg)
````
`````

Note how the content wraps around the sidebar to the right.
However, the sidebar text will still be in line with your content. There are
certain kinds of elements, such as "note" blocks and code cells, that may
clash with your sidebar. If this happens, try using a `{margin}` instead.

## Full-width content

Full-width content extends into the right margin, making it stand out against
the rest of your book's content. To add full-width content to your page, add the
class `full-width` to any of the elements in your documentation. For example, you can
add a `full-width` tag to a note element like this:

````
```{note}
:class: full-width
This content will be full-width
```
````

This code results in the following output:
````{example}
:no-container:
```{note}
:class: full-width
This content will be full-width
```
````

```{admonition} A note for ipynb users
If you are using a Jupyter Notebook as inputs to your documentation using the
Expand Down
4 changes: 4 additions & 0 deletions docs/reference/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,7 @@ This toggle is in the margin!

```{youtube} 2Z7wDaYt53Y
```

## `sphinx-design` for UI components

{bdg-primary}`Test badge`.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ doc = [
"plotly",
"sphinx~=4.0", # Force Sphinx to be the latest version
"sphinx-design",
"sphinx-examples",
"sphinx-copybutton",
"sphinx-tabs",
"sphinx-togglebutton>=0.2.1",
Expand Down
4 changes: 2 additions & 2 deletions src/sphinx_book_theme/assets/styles/components/_search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* Search bar and text styling from searches *
*********************************************/

// Highlight search phrases
// Highlighted search items are a slightly lighter version of Jupyter orange
dt:target,
span.highlighted {
background-color: #fbe54e;
background-color: #f3772642;
}
1 change: 1 addition & 0 deletions src/sphinx_book_theme/assets/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

// Re-usable components across the theme
@import "components/buttons";
@import "components/search.scss";

// Content blocks in standard Sphinx
@import "content/admonitions";
Expand Down
5 changes: 0 additions & 5 deletions src/sphinx_book_theme/assets/styles/pages/_search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,5 @@ ul.search {
color: $grey--medium;
}
}

// Highlighted search items are a slightly lighter version of Jupyter orange
span.highlighted {
background-color: #f3772642;
}
}
}

0 comments on commit 726d965

Please sign in to comment.