Skip to content

Commit 708c2db

Browse files
committed
Documentation: fix inter-page links
1 parent 73605d2 commit 708c2db

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

doc/faq.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
So that this doesn't become repetitive: for the reasons behind the answers
2-
below, see the [[Architecture]] page. The goal of the answers here is to be as
2+
below, see the [Architecture](architecture.md) page. The goal of the answers here is to be as
33
helpful and concise as possible.
44

55
#### Where is stack installed and will it interfere with `ghc` (etc) I already have installed?
66

7-
Stack itself is installed in normal system locations based on the mechanism you used (see the [[Downloads]] page). Stack installs the Stackage libraries in `~/.stack` and any project libraries or extra dependencies in a `.stack-work` directory within each project's directory. None of this should affect any existing Haskell tools at all.
7+
Stack itself is installed in normal system locations based on the mechanism you used (see the [Install and upgrade](install_and_upgrade.md) page). Stack installs the Stackage libraries in `~/.stack` and any project libraries or extra dependencies in a `.stack-work` directory within each project's directory. None of this should affect any existing Haskell tools at all.
88

99
#### What is the relationship between stack and cabal?
1010

@@ -174,7 +174,7 @@ of those three. Updating the index will have no impact on stack's behavior.
174174
175175
#### I have a custom package index I'd like to use, how do I do so?
176176
177-
You can configure this in your stack.yaml. See [[stack.yaml]]
177+
You can configure this in your stack.yaml. See [YAML configuration](yaml_configuration.md).
178178
179179
#### How can I make sure my project builds against multiple ghc versions?
180180
@@ -202,7 +202,7 @@ $ STACK_YAML=stack-7.10.yaml stack build # builds using the given yaml file
202202
#### I heard you can use this with Docker?
203203
204204
Yes, stack supports using Docker with images that contain preinstalled Stackage
205-
packages and the tools. See [[Docker]] for details.
205+
packages and the tools. See [Docker integration](docker_integration.md) for details.
206206
207207
#### How do I use this with Travis CI?
208208
@@ -295,4 +295,4 @@ collect2: error: ld returned 1 exit status
295295
-- While building package tmp-0.1.0.0 using:
296296
/home/philip/.stack/programs/x86_64-linux/ghc-7.10.1/bin/runghc-7.10.1 -package=Cabal-1.22.2.0 -clear-package-db -global-package-db /home/philip/tmp/Setup.hs --builddir=dist-stack/x86_64-linux/Cabal-1.22.2.0/ build
297297
Process exited with code: ExitFailure 1
298-
```
298+
```

doc/install_and_upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Distribution packages are available for [Ubuntu](#ubuntu), [Debian](#debian), [CentOS / Red Hat](#centos--red-hat), [Fedora](#fedora) and [Arch Linux](#arch-linux). Binaries for other operating systems are available on [the releases page](https://github.com/fpco/stack/releases). For the future, we have plans to support more OSes.
22

3-
Binaries are signed with this [[Signing key]].
3+
Binaries are signed with this [signing key](SIGNING_KEY.md).
44

55
## Windows
66

doc/nonstandard_project_init.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,18 @@ packages:
6262
commit: 8debedd3fcb6525ac0d7de2dd49217dce2abc0d9
6363
```
6464

65-
## Issues Referenced
65+
## Issues Referenced
6666
- https://github.com/commercialhaskell/stack/issues/254
6767
- https://github.com/commercialhaskell/stack/issues/199
6868

6969
# Private Hackage
7070
Working with a private Hackage is currently supported in certain situations.
71-
There exist special entries in `stack.yaml` that may help you. In a `stack.yaml` file, it is possible
71+
There exist special entries in `stack.yaml` that may help you. In a `stack.yaml` file, it is possible
7272
to add lines for packages in your database referencing the sdist locations via an `http` entry, or to use a `Hackage` entry.
7373

7474
The recommended stack workflow is to use git submodules instead of a private Hackage. Either by using git submodules and listing the directories in the packages section of `stack.yaml`, or by adding the private dependencies as git URIs with a commit SHA to the `stack.yaml`. This has the large benefit of eliminating the need to manage a Hackage database and pointless version bumps.
7575

76-
For further information see [[stack.yaml]]
76+
For further information see [YAML configuration](yaml_configuration.md)
7777

7878
## Issues Referenced
7979
- https://github.com/commercialhaskell/stack/issues/445

0 commit comments

Comments
 (0)