Skip to content

Commit

Permalink
Update links after repository move, fix #186 (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre authored Nov 2, 2024
1 parent cd07bae commit 57af790
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Live Server for Julia

[![CI Actions Status](https://github.com/tlienart/LiveServer.jl/workflows/CI/badge.svg)](https://github.com/tlienart/LiveServer.jl/actions)
[![codecov](https://codecov.io/gh/tlienart/LiveServer.jl/branch/master/graph/badge.svg?token=mNry6r2aIn)](https://codecov.io/gh/tlienart/LiveServer.jl)
[![docs](https://img.shields.io/badge/docs-dev-blue.svg)](https://tlienart.github.io/LiveServer.jl/dev/)
[![CI](https://github.com/JuliaDocs/LiveServer.jl/actions/workflows/ci.yml/badge.svg?branch=master&event=push)](https://github.com/JuliaDocs/LiveServer.jl/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/JuliaDocs/LiveServer.jl/graph/badge.svg?token=m0lo2IyZ6G)](https://codecov.io/gh/JuliaDocs/LiveServer.jl)
[![docs](https://img.shields.io/badge/docs-latest%20release-blue)](https://juliadocs.github.io/LiveServer.jl/)


This is a simple and lightweight development web-server written in Julia,
Expand Down Expand Up @@ -141,7 +141,7 @@ $ julia --project=docs -ie 'using YourPackage, LiveServer; servedocs()'
```

**Note**: this works with [Literate.jl](https://github.com/fredrikekre/Literate.jl) as well.
See [the docs](https://tlienart.github.io/LiveServer.jl/dev/man/ls+lit/).
See [the docs](https://juliadocs.github.io/LiveServer.jl/dev/man/ls+lit/).


## DEV/Path testing
Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ makedocs(
)

deploydocs(
repo = "github.com/tlienart/LiveServer.jl.git"
repo = "github.com/JuliaDocs/LiveServer.jl.git"
)
2 changes: 1 addition & 1 deletion src/LiveServer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ set_debug(b::Bool) = (DEBUG[] = b;)

reset_ws_interrupt() = (WS_INTERRUPT[] = false)

# issue https://github.com/tlienart/Franklin.jl/issues/977
# issue https://github.com/JuliaDocs/Franklin.jl/issues/977
setverbose = set_verbose

#
Expand Down
2 changes: 1 addition & 1 deletion src/server.jl
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ function get_dir_list(dir::AbstractString)::String
write(io, """
</ul>
<hr>
<a href="https://github.com/tlienart/LiveServer.jl">
<a href="https://github.com/JuliaDocs/LiveServer.jl">
💻 LiveServer.jl
</a>
</body>
Expand Down

0 comments on commit 57af790

Please sign in to comment.