Closed ivanperez-keera closed 1 year ago
Change Manager: Confirmed that the issue exists.
Technical Lead: Confirmed that the issue should be addressed.
Technical Lead: Issue scheduled for Ogma 1.(0+X).(8+Y).
Fix assigned to: @ivanperez-keera.
Implementor: Solution implemented, review requested.
Change Manager: Verified that:
Solution is implemented:
FROM ubuntu:trusty
RUN apt-get update
RUN apt-get install --yes software-properties-common RUN add-apt-repository ppa:hvr/ghc RUN apt-get update
RUN apt-get install --yes ghc-8.6.5 cabal-install-2.4 RUN apt-get install --yes libz-dev
ENV PATH=/opt/ghc/8.6.5/bin:/opt/cabal/2.4/bin:$PWD/.cabal-sandbox/bin:$PATH
RUN cabal update RUN cabal v1-sandbox init RUN cabal v1-install alex happy RUN apt-get install --yes git
CMD git clone $REPO && \ cd $NAME && \ git checkout $COMMIT && \ cd .. && \ cabal v1-install $NAME/$PAT/ --enable-tests && \ cabal v1-install $NAME/$PAT/ --enable-tests --run-tests -j1
Command:
```sh
$ docker run -e "REPO=https://github.com/NASA/ogma" -e "NAME=ogma" -e PAT="ogma-" -e "COMMIT=194710ef46b5fbe176e23ea9397409f007e0b987" -it ogma-test
Change Manager: Implementation ready to be merged.
Description
The description in the cabal file contains two entries with double quotes in the tiles of links. Those double quotes are not displayed correctly on hackage: instead of appearing as
"
, they are shown as"
.Type
Additional context
None.
Requester
Method to check presence of bug
The following command shows that there are
"
present in the documentation:Visualizing the file using a browser displays:
when it should display:
Expected result
The
grep
command above should show no results, indicating that the symbol"
is not produced in the HTML output.Desired result
The
grep
command above should show no results, indicating that the symbol"
is not produced in the HTML output.Proposed solution
Modify the links to use the correct haddock syntax for double quotes inside links.
Further notes
None.