Randomize names
This commit is contained in:
parent
0b51f722cf
commit
e72baf3007
20
about.yml
20
about.yml
|
@ -32,7 +32,15 @@ content:
|
|||
## Imprint
|
||||
|
||||
pub.solar n.e.V.
|
||||
Benjamin Bädorf, Jhonas Wernery, Hendrik Sokolowki
|
||||
<script>
|
||||
document.write(
|
||||
'<p>' +
|
||||
(['Benjamin Bädorf', 'Jhonas Wernery', 'Hendrik Sokolowki']
|
||||
.sort(() => Math.random() - 0.5)
|
||||
.join(', ')) +
|
||||
'</p>'
|
||||
);
|
||||
</script>
|
||||
c/o MiOM 202,
|
||||
Wilhelm-Mauser-Straße 47 Halle 5,
|
||||
D-50827 Köln,
|
||||
|
@ -80,7 +88,15 @@ content:
|
|||
## Impressum
|
||||
|
||||
pub.solar n.e.V.
|
||||
Benjamin Bädorf, Jhonas Wernery, Hendrik Sokolowki
|
||||
<script>
|
||||
document.write(
|
||||
'<p>' +
|
||||
(['Benjamin Bädorf', 'Jhonas Wernery', 'Hendrik Sokolowki']
|
||||
.sort(() => Math.random() - 0.5)
|
||||
.join(', ')) +
|
||||
'</p>'
|
||||
);
|
||||
</script>
|
||||
c/o MiOM 202,
|
||||
Wilhelm-Mauser-Straße 47 Halle 5,
|
||||
D-50827 Köln,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import MarkdownIt from "https://jspm.dev/markdown-it";
|
||||
|
||||
const mdIt = new MarkdownIt({
|
||||
html: false, // Enable HTML tags in source
|
||||
html: true, // Enable HTML tags in source
|
||||
xhtmlOut: false, // Use '/' to close single tags (<br />).
|
||||
// This is only for full CommonMark compatibility.
|
||||
breaks: true, // Convert '\n' in paragraphs into <br>
|
||||
|
|
Loading…
Reference in a new issue