Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert stdlib to markdown. #14378

Merged
merged 32 commits into from
Dec 16, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b62e800
Move helpdb entries for BLAS.
MichaelHatherly Dec 9, 2015
035a57f
Move helpdb entries for Libdl.
MichaelHatherly Dec 9, 2015
55c7994
Move helpdb entries for Libc.
MichaelHatherly Dec 9, 2015
f7cf6c4
Move helpdb entries for Collections.
MichaelHatherly Dec 9, 2015
6e9f8fa
Move helpdb entries for Profile.
MichaelHatherly Dec 9, 2015
e637ec8
Move helpdb entries for Cartesian.
MichaelHatherly Dec 9, 2015
9e4539f
Move helpdb entries for Base.
MichaelHatherly Dec 9, 2015
c18c092
Move helpdb entries for Dates.
MichaelHatherly Dec 9, 2015
1036a55
Move helpdb entries for Pkg.
MichaelHatherly Dec 9, 2015
6175c9f
Move trailing docs to helpdb/Base.jl.
MichaelHatherly Dec 9, 2015
2ba4551
Add footnote parsing and rendering.
MichaelHatherly Dec 11, 2015
5f60973
Fix blockquote rendering for rst.
MichaelHatherly Dec 11, 2015
1517b72
Add rst table rendering.
MichaelHatherly Dec 11, 2015
bd25209
Special-case rendering of `:func:`-style links.
MichaelHatherly Dec 12, 2015
ccb35ae
Add double backtick syntax for inline math
MichaelHatherly Dec 11, 2015
eb050c7
Remove `atdoc_str` from BLAS docs and reformat.
MichaelHatherly Dec 9, 2015
8f46c87
Remove `atdoc_str` from Cartesian docs and reformat.
MichaelHatherly Dec 9, 2015
2d49e87
Remove `atdoc_str` from Collections docs and reformat.
MichaelHatherly Dec 9, 2015
760f246
Remove `atdoc_str` from Dates docs and reformat.
MichaelHatherly Dec 9, 2015
b1aef58
Remove `atdoc_str` from Libc docs and reformat.
MichaelHatherly Dec 9, 2015
749faf4
Remove `atdoc_str` from Libdl docs and reformat.
MichaelHatherly Dec 9, 2015
78df2e5
Remove `atdoc_str` from Pkg docs and reformat.
MichaelHatherly Dec 9, 2015
220f284
Remove `atdoc_str` from Profile docs and reformat.
MichaelHatherly Dec 9, 2015
2b2ce53
Remove `atdoc_str` from Base docs and reformat.
MichaelHatherly Dec 9, 2015
be35ce8
Remove `atdoc_str` from inline docs and reformat.
MichaelHatherly Dec 10, 2015
6f694f6
Add `atkeyword` macro to basedocs.jl, move some docs inline.
MichaelHatherly Dec 10, 2015
2238a08
Add `stripmd` methods for `Footnote`s.
MichaelHatherly Dec 11, 2015
c5fa1ef
Escape rst link backticks.
MichaelHatherly Dec 11, 2015
3379f5d
Fixup formatting in LibGit2 docs.
MichaelHatherly Dec 12, 2015
9c17003
Fixup signature escaping in genstdlib.jl
MichaelHatherly Dec 12, 2015
d44899a
Update markdown tests for inline tex and footnotes.
MichaelHatherly Dec 12, 2015
2c7aef1
Rebuild stdlib docs.
MichaelHatherly Dec 13, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/abstractarray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ end

## iteration utilities ##

doc"""
"""
foreach(f, c...) -> Void
Call function `f` on each element of iterable `c`.
Expand Down
8 changes: 5 additions & 3 deletions base/combinatorics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,16 @@ function invperm(a::AbstractVector)
end

#XXX This function should be moved to Combinatorics.jl but is currently used by Base.DSP.
doc"""
"""
nextprod([k_1,k_2,...], n)
Next integer not less than `n` that can be written as $\prod k_i^{p_i}$ for integers $p_1$, $p_2$, etc.
Next integer not less than `n` that can be written as ``\\prod k_i^{p_i}`` for integers
``p_1``, ``p_2``, etc.
For a list of integers i1, i2, i3, find the smallest
i1^n1 * i2^n2 * i3^n3 >= x
for integer n1, n2, n3
"""
function nextprod(a::Vector{Int}, x)
Expand Down Expand Up @@ -210,4 +213,3 @@ for deprecatedfunc in [:combinations, :factorial, :prevprod, :levicivita,
"Run Pkg.add(\"Combinatorics\") to install Combinatorics on Julia v0.5-"))
end
end

Loading