Skip to content

Commit

Permalink
makeshift gif fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0815Creeper committed Nov 10, 2023
1 parent a3c2cef commit b9a9daa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/Example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ jobs:
jupyter nbconvert --to script ${{ env.FILE }}
jupyter nbconvert --to markdown ${{ env.FILE }}
- name: "Fix GIF"
uses: actions/checkout@v3
run: |
sed -i -E 's~(<img src="data:image\/gif;base64,[[:alpha:],[:digit:],\/,+]*=" \/>)~```@raw html\n\1\n```~g' juliacon_2023.md
- name: Archive examples artifacts
if: success() && matrix.os == 'windows-latest'
uses: actions/upload-artifact@v3
Expand Down
3 changes: 2 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Licensed under the MIT license. See LICENSE file in the project root for details.
#

import Pkg; Pkg.develop(path=joinpath(@__DIR__,"../../FMIFlux.jl"))
using Documenter, FMIFlux
using Documenter: GitHubActions

Expand All @@ -11,7 +12,7 @@ makedocs(sitename="FMIFlux.jl",
collapselevel = 1,
sidebar_sitename = false,
edit_link = nothing,
size_threshold_ignore = ["examples/juliacon_2023.md"]
size_threshold_ignore = ["examples\\juliacon_2023.md"]
),
warnonly=true,
pages= Any[
Expand Down

0 comments on commit b9a9daa

Please sign in to comment.