-
Hi everybody. I've used the awesome marp project to create a few slides and deployed those with GitHub Pages in this repository: Does anyone know how to fix that, or is this a known bug with marp and mobile devices? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
That is known issue as a side effect on the large presentation, in the polyfill to fix the wrong scaling of WebKit browsers. Generally it is known that a lot of (scaled) slide pages will bring crash the mobile browser tab by WebKit. Unfortunately, there are not clear workarounds for now. Related
DetailsThe progress of WebKitWebKit is still in development on "Layer-Based SVG Engine", to fix the long-standing bug of rendering.
We've already confirmed that this engine brings the correct rendering of slides without polyfill. The issue would be resolved if LBSE on WebKit for mobile devices made stable. Disable polyfillThe injected script provided by Marp Core will apply the polyfill to WebKit browsers. When you are using Marp CLI, you can try to disable the script injection by the configuration file. In theory, this should fix the crashes on WebKit browsers. // marp.config.js
module.exports = {
// Set the constructor options for Marp Core
options: {
script: false
}
} marp -c marp.config.js However, you must see some messy scalings caused by a WebKit's long-standing bug instead. |
Beta Was this translation helpful? Give feedback.
That is known issue as a side effect on the large presentation, in the polyfill to fix the wrong scaling of WebKit browsers. Generally it is known that a lot of (scaled) slide pages will bring crash the mobile browser tab by WebKit.
Unfortunately, there are not clear workarounds for now.
Related
Details
The progress of WebKit
WebKit is still in development on "Layer-Based SVG Engine", to fix the long-standing bug of rendering.
We've already confirmed that this engine brings the correct rendering of slides with…