Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
accessibility-website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
teaching-materials
accessibility-website
Commits
4174f079
Unverified
Commit
4174f079
authored
5 months ago
by
Jennifer Mankoff
Browse files
Options
Downloads
Patches
Plain Diff
fixed mermaid presentation of materials
parent
f294b5a2
No related branches found
Branches containing commit
No related tags found
1 merge request
!8
adjusted plain language to be specific
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
_layouts/presentation.html
+49
-40
49 additions, 40 deletions
_layouts/presentation.html
_layouts/presentation_production.html
+20
-12
20 additions, 12 deletions
_layouts/presentation_production.html
with
69 additions
and
52 deletions
_layouts/presentation.html
+
49
−
40
View file @
4174f079
...
...
@@ -37,7 +37,8 @@
<textarea
id=
"source"
>
{{ content }}
</textarea>
<script
src=
"https://gnab.github.io/remark/downloads/remark-latest.min.js"
type=
"text/javascript"
></script>
<script
src=
"{{'/assets/js/remark-latest.min.js' | relative_url}}"
type=
"text/javascript"
></script>
<script
src=
"{{'/assets/js/remark-macros-jm.js' | relative_url}}"
type=
"text/javascript"
></script>
<script
type=
"text/javascript"
async
src=
"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML"
async
>
...
...
@@ -55,15 +56,26 @@
countIncrementalSlides
:
false
});
// Add event listener for slide changes
slideshow
.
on
(
'
afterShowSlide
'
,
async
function
(
event
)
{
console
.
log
(
'
Slide changed to:
'
,
event
);
// Your custom callback code here
// Get the div with the class name 'remark-visible' and 'mermaid' inside 'remark-visible'
mermaidElements
=
document
.
getElementsByClassName
(
'
remark-visible
'
)[
0
].
getElementsByClassName
(
'
mermaid
'
)
console
.
log
(
'
ElementList
'
,
mermaidElements
);
// Convert the NodeList to an array (optional, if you need array methods)
const
mermaidElementsArray
=
Array
.
from
(
mermaidElements
);
await
mermaid
.
run
({
nodes
:
mermaidElementsArray
});
});
var
config
=
{
logLevel
:
1
,
cloneCssStyles
:
false
,
useMaxWidth
:
true
,
startOnLoad
:
true
,
htmlLabels
:
true
,
callback
:
function
(
id
){
console
.
log
(
id
,
'
rendered
'
);
},
startOnLoad
:
false
,
flowchart
:{
curve
:
'
linear
'
,
fontSize
:
20
,
...
...
@@ -74,44 +86,41 @@
mermaid
.
initialize
(
config
);
</script>
<script
type=
"text/javascript"
src=
"{{site.baseurl}}/assets/js/qrcode.js"
></script>
<script>
// this script was copied from https://github.com/darcamo/remarkjs_template
// Find an element with the #qrcode id and replace it with the a QR code
function
prepare_qr_code
()
{
var
element
=
document
.
getElementById
(
"
qrcode
"
);
if
(
element
!==
null
)
{
var
url
=
element
.
textContent
;
element
.
textContent
=
""
;
var
qrcode
=
new
QRCode
(
"
qrcode
"
,
{
text
:
url
,
width
:
128
,
height
:
128
,
colorDark
:
"
black
"
,
colorLight
:
"
white
"
,
correctLevel
:
QRCode
.
CorrectLevel
.
H
});
}
}
// this script was copied from https://github.com/darcamo/remarkjs_template
// Add any javascript function that changes the presentation here, such as changing the QR code, updating a chart, etc.
window
.
addEventListener
(
"
load
"
,
function
()
{
// Even though we are executing code in the "load" event of the
// window, directly calling the functions we want might not work
// because it needs to be run after other code that also runs in
// the load event. Therefore, we use a setTimeout to sleep for 1
// second before calling the functions
setTimeout
(
function
(){
prepare_qr_code
();
},
500
);
});
</script>
<div
class=
"my-header"
>
function
prepare_qr_code
()
{
var
element
=
document
.
getElementById
(
"
qrcode
"
);
if
(
element
!==
null
)
{
var
url
=
element
.
textContent
;
element
.
textContent
=
""
;
var
qrcode
=
new
QRCode
(
"
qrcode
"
,
{
text
:
url
,
width
:
128
,
height
:
128
,
colorDark
:
"
black
"
,
colorLight
:
"
white
"
,
correctLevel
:
QRCode
.
CorrectLevel
.
H
});
}
}
// this script was copied from https://github.com/darcamo/remarkjs_template
// Add any javascript function that changes the presentation here, such as changing the QR code, updating a chart, etc.
window
.
addEventListener
(
"
load
"
,
async
function
()
{
// Even though we are executing code in the "load" event of the
// window, directly calling the functions we want might not work
// because it needs to be run after other code that also runs in
// the load event. Therefore, we use a setTimeout to sleep for 1
// second before calling the functions
await
prepare_qr_code
();
});
</script>
<div
class=
"my-header"
>
<img
src=
"{{site.baseurl}}/assets/img/favicon.ico"
style=
"height: 30px;"
/>
</div>
...
...
This diff is collapsed.
Click to expand it.
_layouts/presentation_production.html
+
20
−
12
View file @
4174f079
...
...
@@ -44,7 +44,6 @@
src=
"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML"
async
>
<
script
type
=
"
text/javascript
"
src
=
"
{{'assets/js/mathjax-sre.js' | relative_url}}
"
>
</script>
<script
type=
"text/javascript"
src=
"{{'assets/js/html2canvas.min.js' | relative_url}}"
></script>
<script
type=
"text/javascript"
src=
"{{'assets/js/presentation-export.js' | relative_url}}"
></script>
<script
type=
"text/javascript"
src=
"{{site.mermaid}}"
></script>
<script
type=
"text/javascript"
>
...
...
@@ -57,15 +56,26 @@
countIncrementalSlides
:
false
});
// Add event listener for slide changes
slideshow
.
on
(
'
afterShowSlide
'
,
async
function
(
event
)
{
console
.
log
(
'
Slide changed to:
'
,
event
);
// Your custom callback code here
// Get the div with the class name 'remark-visible' and 'mermaid' inside 'remark-visible'
mermaidElements
=
document
.
getElementsByClassName
(
'
remark-visible
'
)[
0
].
getElementsByClassName
(
'
mermaid
'
)
console
.
log
(
'
ElementList
'
,
mermaidElements
);
// Convert the NodeList to an array (optional, if you need array methods)
const
mermaidElementsArray
=
Array
.
from
(
mermaidElements
);
await
mermaid
.
run
({
nodes
:
mermaidElementsArray
});
});
var
config
=
{
logLevel
:
1
,
cloneCssStyles
:
false
,
useMaxWidth
:
true
,
startOnLoad
:
true
,
htmlLabels
:
true
,
callback
:
function
(
id
){
console
.
log
(
id
,
'
rendered
'
);
},
startOnLoad
:
false
,
flowchart
:{
curve
:
'
linear
'
,
fontSize
:
20
,
...
...
@@ -98,21 +108,20 @@
// this script was copied from https://github.com/darcamo/remarkjs_template
// Add any javascript function that changes the presentation here, such as changing the QR code, updating a chart, etc.
window
.
addEventListener
(
"
load
"
,
function
()
{
window
.
addEventListener
(
"
load
"
,
async
function
()
{
// Even though we are executing code in the "load" event of the
// window, directly calling the functions we want might not work
// because it needs to be run after other code that also runs in
// the load event. Therefore, we use a setTimeout to sleep for 1
// second before calling the functions
setTimeout
(
function
(){
prepare_qr_code
();
},
500
);
await
prepare_qr_code
();
});
</script>
<div
class=
"my-header"
>
<img
src=
"{{site.baseurl}}/assets/img/favicon.ico"
style=
"height: 30px;"
/>
<img
src=
"{{site.baseurl}}/assets/img/favicon.ico"
style=
"height: 30px;"
/>
</div>
</body>
...
...
@@ -124,4 +133,3 @@ class center middle inverse
```ruby
als erste Zeilen in Slide
-->
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment