Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Christian Eder
msolve-examples
Commits
6b2c984d
Commit
6b2c984d
authored
Jan 18, 2021
by
Christian Eder
Browse files
adds julia web list generator for examples
parent
03d54eea
Changes
1
Hide whitespace changes
Inline
Side-by-side
zero-dimensional/web-examples-list.jl
0 → 100644
View file @
6b2c984d
f
=
open
(
"msolve-examples-list.html"
,
"w"
)
L
=
readdir
()
for
ex
in
L
if
(
occursin
(
".ms"
,
ex
))
write
(
f
,
" <li>
\n
"
)
write
(
f
,
" <a href=
\"
https://gitlab.lip6.fr/eder/msolve-examples/-/raw/master/zero-dimensional/"
*
ex
*
"
\"
>
\n
"
)
write
(
f
,
" "
*
ex
*
"
\n
"
)
write
(
f
,
" </a>
\n
"
)
write
(
f
,
" </li>
\n
"
)
end
end
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment