Commit graph

105 commits

Author SHA1 Message Date
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
d319d92d98
syntaxhighlight: fix behavior for noClasses=true #569 2023-06-15 23:17:27 +02:00
Sören Weber
c3015432e5
syntaxhighlight: improve if using highlight shortcode #569 2023-06-15 19:35:35 +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
cef256eb40
tabs: allow codified tabs to be colored #550 2023-06-08 14:53:22 +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
67fe76a99c
shortcodes: add style option to mimic code box color scheme #551 2023-06-06 17:44:06 +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
55549897c5
tags: leverage space in taxonomy layout #530 2023-05-19 09:54:14 +02:00
Sören Weber
06d35bbbdb
openapi: replace implementation with swagger-ui #523 2023-05-14 23:05:07 +02:00
Sören Weber
5f19b0f616
i18n: fix tooltip alignment after last change #492 2023-02-25 00:32:30 +01:00
Sören Weber
27bb276909
i18n: write code ltr even for rtl languages #492 2023-02-25 00:05:38 +01:00
Sören Weber
c0a1c9cbcb
menu: rebuild collapsible expander #466
because sizing and positioning was a mess;
the follwing things are fixed with this:
- resizes and positions correctly according to html elements font-size
- IE11 compatiblity is now given
- a11y: expander is now correctly given a focus outline
- chevron is now coded into html instead of a css content value, which makes it easier to change (was an issue in the past)
- the visited checkmark now breaks correctly on long lines and hides behind the text if necessary
- some more css classes were introduced to make further extensions (eg. nested shortcut links) easier
2023-02-24 23:29:33 +01:00
Sören Weber
68e89ca171
anchor: fix link in FF when served from filesystem #482 2023-02-20 13:54:45 +01:00
Sören Weber
09e7aebcd8
nav: fix initial positioning on content pages #476 2023-02-12 14:10:55 +01:00
Sören Weber
c7a819323a
nav: restore scroll position on browser back #476 2023-02-12 09:35:50 +01:00
Sören Weber
02e81b6e4b
scrollbar: remove debug log #471 2023-02-11 00:05:02 +01:00
Sören Weber
8e4b7cddc5
scrollbar: update in next frame
the high timeout caused glitches so we assume the width has been settled in the next animation frame + plus some surplus #470
2023-02-10 17:02:33 +01:00
Sören Weber
d62e2f7e0e
i18n: full support for RTL #470 2023-02-10 00:34:47 +01:00
Sören Weber
381b74f837
i18n: add RTL support for nav bar and child items #470 2023-02-09 00:53:11 +01:00
Sören Weber
56bc99b79a
tabs: nested tabs content is not displayed #468 2023-02-07 18:06:34 +01:00
Sören Weber
a046b9300f
mermaid: make zoom configurable #144 2023-02-05 11:13:03 +01:00
Sören Weber
5babf80537
lightbox: close on ESC #451 2023-02-04 23:12:40 +01:00
Sören Weber
6d90be3015
browser: fix broken inline clipboard buttons after IE11 refactor #452 2023-02-04 22:50:19 +01:00
Sören Weber
7de76ad337
browser: IE11 from hell #452 2023-02-04 16:53:05 +01:00
Sören Weber
9783b8af0f
browser: IE11 - you guess it #452 2023-02-04 16:48:43 +01:00
Sören Weber
4a1adeb79b
browser: further IE11 fixes #452 2023-02-04 16:17:19 +01:00
Sören Weber
5b9389fde2
browser: remove IE11 errors #452 2023-02-04 16:01:42 +01:00
Sören Weber
7722748432
swagger: avoid errors when using invalid rapi-doc fragment ids #465 2023-02-04 13:39:59 +01:00
Sören Weber
5f7df12b88
mermaid: remove jQuery #452 2023-02-04 01:54:13 +01:00
Sören Weber
03c2bf52a9
nav: fix nav on last project page and horizontal scrolling detection #452 2023-02-04 01:42:21 +01:00
Sören Weber
8f4d9f4930
mermaid: rerender graph if search term is present and variant is switched #460 2023-02-04 00:07:52 +01:00
Sören Weber
973e95af07
tabs: fix after global jQuery removal #452 2023-02-04 00:04:42 +01:00
Sören Weber
d1fcf21461
global: remove jQuery #452 2023-02-03 23:35:16 +01:00
Sören Weber
8e0013647b
clipboard: remove jQuery #452 2023-02-03 23:25:57 +01:00
Sören Weber
00faf15af5
expand: a11y and remove jQuery #339 #452 2023-02-03 08:57:55 +01:00
Sören Weber
322a86ae47
mark: fix opening of menus if search term was found #452 2023-02-03 08:56:01 +01:00
Sören Weber
f89c9944bd
cruft: remove jQuery #452
this code was unused
2023-02-01 19:02:52 +01:00
Sören Weber
e57358006a
mark: remove jQuery #452 2023-02-01 15:42:24 +01:00
Sören Weber
a95d86c03c
search: remove jQuery #452 2023-01-29 23:58:43 +01:00
Sören Weber
f322e58ddd
nav: remove jQuery #452 2023-01-29 16:47:34 +01:00
Sören Weber
1491e66580
history: remove jQuery #452 2023-01-29 16:47:01 +01:00
Sören Weber
302ea923ed
tabs: remove jQuery #452 2023-01-29 16:45:42 +01:00
Sören Weber
f2bfdce1d9
lightbox: switch to CSS-only solution #451 2023-01-29 11:21:52 +01:00
Sören Weber
05b31c174a
nav: fix left/right navigation for horizontal scrolling #435 2023-01-22 23:46:56 +01:00
Sören Weber
8aeb69fa56
search: make build and js forgiving against config errors #400 2022-11-20 23:00:40 +01:00
Sören Weber
0d5ee6d1b4
mermaid: avoid leading whitespace #394
to avoid brittle initialization of mindmap graph
2022-11-19 00:00:31 +01:00