-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from maciejzj/develop
Release for v0.2.0
- Loading branch information
Showing
8 changed files
with
567 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/*.html | ||
/*.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Themes for ssb | ||
|
||
Path to a stylesheet is specified in the ssb html header file. The default one | ||
looks for `styles.css` in the header's directory. | ||
|
||
## Running quick visual tests of the themes | ||
|
||
Use the `run_test` script passing the path to the desired theme as an argument. | ||
This script uses ssb version accessed via PATH. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Header 1 | ||
## Header 2 | ||
### Header 3 | ||
#### Header 4 | ||
##### Header 5 | ||
|
||
* Bullet point 1 | ||
* Bulet point 2 | ||
* Bullet point 3 | ||
|
||
1. Ordered list first | ||
2. Ordered list second | ||
3. Ordered list third | ||
|
||
A [link](https://maciejzj.xyz) to a website. | ||
|
||
| Column 1 | Column 2 | | ||
| -------- | -------- | | ||
| Value 1 | Row 1 | | ||
| Value 2 | Row 2 | | ||
| Value 3 | Row 3 | | ||
|
||
> A quote block. | ||
A piece of *emph* text. | ||
|
||
A piece of **strong** text. | ||
|
||
![An image](https://api.culture.pl/sites/default/files/styles/260_auto_aspect/public/images/imported/sztuki%20wizualne/portrety/Jarema_mari/jerema_mairia_rolke_ag.jpg?itok=K7cmrkcF) | ||
|
||
A ruler separating text. | ||
|
||
--- | ||
|
||
Preformatted code/verbatim: | ||
|
||
``` | ||
git filter-branch --env-filter ' | ||
WRONG_EMAIL="<WRONG_EMAIL>" | ||
NEW_NAME="<NEW_NAME>" | ||
NEW_EMAIL="<NEW_EMAIL>" | ||
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ] | ||
then | ||
export GIT_COMMITTER_NAME="$NEW_NAME" | ||
export GIT_COMMITTER_EMAIL="$NEW_EMAIL" | ||
fi | ||
if [ "$GIT_AUTHOR_EMAIL" = "$WRONG_EMAIL" ] | ||
then | ||
export GIT_AUTHOR_NAME="$NEW_NAME" | ||
export GIT_AUTHOR_EMAIL="$NEW_EMAIL" | ||
fi | ||
' --tag-name-filter cat -- --branches --tags | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env sh | ||
# Usage: run_test <path_to_css> | ||
|
||
set -eu | ||
|
||
rm -f styles.css | ||
ssb -g | ||
ln -fs "$1" styles.css | ||
ssb -d index.md |
Oops, something went wrong.