/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
doc/NEWS-update.jl
19 строк
488 B
Steven G. Johnson
make NEWS-update.jl more robust in trimming existing links (#59305)
29 авг 2025, 06:48
Не верифицирован
29 авг 2025, 06:48
b30e7eb
Код
Авторство
О чём код?
# Script to automatically insert Markdown footnotes for all [#xxxx] issue # cross-references in the NEWS file. NEWS = get(ARGS, 1, "NEWS.md") s = read(NEWS, String) m = match(r"^\[#[0-9]+\]:"m, s) if m !== nothing s = s[1:m.offset-1] end footnote(n) = "[#$n]: https://github.com/JuliaLang/julia/issues/$n" N = map(m -> parse(Int,m.captures[1]), eachmatch(r"\[#([0-9]+)\]", s)) foots = join(map(footnote, sort!(unique(N))), "\n") open(NEWS, "w") do f println(f, s, foots) end