Skip to content

Commit 47c8c50

Browse files
authored
Fix urls, use srcURL for ct/ (#9)
* Use srcURL in ct/ * Fix url
1 parent cd51543 commit 47c8c50

File tree

3 files changed

+5
-26
lines changed

3 files changed

+5
-26
lines changed

docs/lit/ct/1-fbp.jl

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,11 @@ This example illustrates how to perform filtered back-projection (FBP)
55
image reconstruction in CT
66
using the Julia language.
77
8-
This entire page was generated using a single Julia file:
9-
[1-fbp.jl](@__REPO_ROOT_URL__/ct/1-fbp.jl).
8+
This is under construction.
9+
See the demos in the Sinograms.jl package instead.
1010
=#
1111

12-
#md # In any such Julia documentation,
13-
#md # you can access the source code
14-
#md # using the "Edit on GitHub" link in the top right.
15-
16-
#md # The corresponding notebook can be viewed in
17-
#md # [nbviewer](https://nbviewer.org/) here:
18-
#md # [`1-fbp.ipynb`](@__NBVIEWER_ROOT_URL__/ct/1-fbp.ipynb),
19-
#md # and opened in [binder](https://mybinder.org/) here:
20-
#md # [`1-fbp.ipynb`](@__BINDER_ROOT_URL__/ct/1-fbp.ipynb),
21-
22-
# This is under construction.
12+
#srcURL
2313

2414
#=
2515
First we add the Julia packages that are need for these examples.
@@ -86,14 +76,4 @@ jim(kr, kϕ, abs.(data), title="k-space data magnitude",
8676
end
8777
=#
8878

89-
90-
# ## Reproducibility
91-
92-
# This page was generated with the following version of Julia:
93-
94-
io = IOBuffer(); versioninfo(io); split(String(take!(io)), '\n')
95-
96-
97-
# And with the following package versions
98-
99-
import Pkg; Pkg.status()
79+
include("../../inc/reproduce.jl")

docs/lit/mri/4-cs-sense-2d.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,6 @@ than the NRMSE of the initial image,
375375
but aliasing artifacts (ripples)
376376
were greatly reduced
377377
by the CS-SENSE reconstruction method.
378-
The SNR
379378
=#
380379

381380

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function prep_markdown(str, root, file)
2929
str = replace(str, inc1 => repro)
3030
urls = inc_read("urls.jl")
3131
file = joinpath(splitpath(root)[end], splitext(file)[1])
32-
tmp = splitpath(root)[end-3:end] # docs lit ?? 00
32+
tmp = splitpath(root)[end-2:end] # docs lit ??
3333
urls = replace(urls,
3434
"xxxrepo" => joinpath(repo_root_url, tmp...),
3535
"xxxnb" => joinpath(nbviewer_root_url, tmp[end]),

0 commit comments

Comments
 (0)