Revision b8ada9c45384da1897c3dfa4cfba9d738c519701 authored by Tim Holy on 08 January 2018, 02:03:42 UTC, committed by GitHub on 08 January 2018, 02:03:42 UTC
Deprecation warnings: print module name if line number is 0
2 parent s 12a264f + 2d7b6e2
Raw File
NEWS-update.jl
# 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)

s = s[1:match(r"\[#[0-9]+\]:", s).offset-1];

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
back to top