Commit graph

600 commits

Author SHA1 Message Date
Sören Weber
83e403ea2e
highlight: add option for wrapping vs. scrolling #169 2023-06-22 01:22:08 +02:00
Sören Weber
73fdfb5ea6
highlight: to much simplification #169 2023-06-21 22:27:33 +02:00
Sören Weber
90db4823dc
highlight: simplify js implementation #169 2023-06-21 22:06:16 +02:00
Sören Weber
05e33f051b
syntaxhighlight: trim highlight color for relearn-light #569 2023-06-17 10:23:07 +02:00
Sören Weber
ca6965b843
syntaxhighlight: adjust highlighted line color #569 2023-06-17 00:37:44 +02:00
Sören Weber
2be07f6871
syntaxhiglight: adjust for background #569 2023-06-17 00:36:51 +02:00
Sören Weber
e1b2388a18
syntaxhighlight: fix table background on overflow #569 2023-06-16 22:53:18 +02:00
Sören Weber
74e31cae1a
syntaxhighlight: move everything closer together in highlight table lineno mode #569 2023-06-16 22:29:35 +02:00
Sören Weber
7a92d032e5
syntaxhighlight: allow for wrapping #569
- currently the only option until #169 is implemented
- also mandatory for printing
2023-06-16 21:13:59 +02:00
Sören Weber
d62e47ff90
theme: slightly separate 'More' caption from menu 2023-06-16 00:16:09 +02:00
Sören Weber
739f7fc02a
variant: reduce 'More' contrast to adjust with relearn-bright variant 2023-06-15 23:55:45 +02:00
Sören Weber
d319d92d98
syntaxhighlight: fix behavior for noClasses=true #569 2023-06-15 23:17:27 +02:00
Sören Weber
5218972b06
syntaxhighlight: fix borders using highlight shortcode #569 2023-06-15 21:57:08 +02:00
Sören Weber
c3015432e5
syntaxhighlight: improve if using highlight shortcode #569 2023-06-15 19:35:35 +02:00
Sören Weber
25a2358096
theme: revamp 404 page #566 2023-06-10 13:56:58 +02:00
Sören Weber
e77afd6b70
mermaid: allow for YAML frontmatter inside of graph #564 2023-06-09 21:45:57 +02:00
Sören Weber
59428415f2
Merge branch 'mermaid-front-matter-support' of https://github.com/takac/hugo-theme-relearn into takac-mermaid-front-matter-support 2023-06-09 20:36:28 +02:00
Tom Cammann
cb9cec76e3 Support yaml front matter in mermaid blocks
Mermaid diagrams can start with yaml front matter, e.g.
```
---
title: Example Diagram
---
graph LR
  A --> B
```

Relearn injects an init directive
`%%{init: {"theme":"default"}}%%` at the top of a mermaid block to
support theming the mermaid diagram. However this will cause a syntax
parser error in mermaid if the init directive comes before the yaml
front matter.

Valid:
```
%%{init: {"theme":"default"}}%%
graph LR
    A --> B
```
Invalid:
```
%%{init: {"theme":"default"}}%%
---
title: Example
---
graph LR
    A --> B
```

To support yaml front matter, we detect if front matter is used, and
inject the init directive after the front matter.

```
---
title: Example
---
%%{init: {"theme":"default"}}%%
graph LR
    A --> B
```
2023-06-09 11:52:23 +01:00
Sören Weber
5a2ffac7fc
tabs: fix false codify detection if only contained in subtabs #550 2023-06-08 16:45:30 +02:00
Sören Weber
efce383939
tabs: decrease contrast for tabs title #550 2023-06-08 15:23:55 +02:00
Sören Weber
d86973ae01
tabs: further tweaking of default color #550 2023-06-08 15:11:51 +02:00
Sören Weber
cef256eb40
tabs: allow codified tabs to be colored #550 2023-06-08 14:53:22 +02:00
Sören Weber
0a3662be61
tabs: increase contrast for non selected tab handles #550
and make default style darkish grey similar to other shortcodes
2023-06-08 14:36:28 +02:00
Sören Weber
310df3425f
icon: remove whitespace on start #560 2023-06-08 13:36:12 +02:00
Sören Weber
a5e6a30493
tabs: fix neon style #550 2023-06-07 20:17:17 +02:00
Sören Weber
25e39cfe34
tabs: fix style for indented code blocks #550 2023-06-07 20:16:59 +02:00
Sören Weber
822a913e83
tabs: fix borders for high dpi screens #550 2023-06-07 18:41:16 +02:00
Sören Weber
9952cfb2da
tabs: fix issues with FF :has() selector #551 2023-06-06 20:29:02 +02:00
Sören Weber
a79f81322a
tabs: add title and icon option #552 2023-06-06 19:54:12 +02:00
Sören Weber
f50c362c8e
tabs: adjust tab handle styling #550 2023-06-06 18:15:08 +02:00
Sören Weber
67fe76a99c
shortcodes: add style option to mimic code box color scheme #551 2023-06-06 17:44:06 +02:00
Sören Weber
aea9a54a08
tabs: colors for each tab in a set #550 2023-06-05 18:31:55 +02:00
Sören Weber
df37463789
expand: avoid superflous margin at start and end of content #558 2023-06-05 08:43:51 +02:00
Sören Weber
61776a070f
tabs: more visula clue for selected tab #550 2023-06-05 08:37:50 +02:00
Sören Weber
91fa8fc403
tabs: fix neon variant after revamp #550 2023-06-05 00:46:34 +02:00
Sören Weber
013dcc0ba7
variant: move color-dependend properties 2023-06-05 00:41:14 +02:00
Sören Weber
911ec6fa86
tabs: revamp for color options support #550 2023-06-05 00:27:51 +02:00
Sören Weber
5ca1c4c5f0
shortcodes: avoid superflous margin at start and end of content #558 2023-06-05 00:24:14 +02:00
Sören Weber
08697ef8b2
theme: update color values to rgba #544 2023-05-28 00:04:44 +02:00
Sören Weber
a135b2adb4
chore: update Mermaid to 10.2.0 #499 2023-05-24 20:25:13 +02:00
Sören Weber
7e92610184
tab: new shortcode to display single tab #538 2023-05-23 23:57:48 +02:00
Sören Weber
5178890342
expand: indent expanded content #536 2023-05-23 20:03:06 +02:00
Sören Weber
e362346834
notice: make boxes more prominent #535 2023-05-23 19:55:13 +02:00
Sören Weber
36fefc833d
chore: update Mermaid to 9.4.3 #534 2023-05-23 15:17:23 +02:00
Sören Weber
da634d62c8
theme: allow to display tags below article #513 2023-05-19 20:44:19 +02:00
Sören Weber
5099b5b73c
tags: taxonomy layout with headings all on the left #530
and columned lists like in the terms page for a more concicse look
2023-05-19 12:59:06 +02:00
Sören Weber
53093085bd
tags: leverage space in terms layout #530 2023-05-19 10:15:20 +02:00
Sören Weber
55549897c5
tags: leverage space in taxonomy layout #530 2023-05-19 09:54:14 +02:00
Sören Weber
b19b9feaa7
variant: avoid leaking shadows in neon print style #524 2023-05-14 23:27:41 +02:00
Sören Weber
06d35bbbdb
openapi: replace implementation with swagger-ui #523 2023-05-14 23:05:07 +02:00