mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
Adding sed for GitHub Markdown Moving from index.md to kitmatic-overview Updating image to pull Signed-off-by: Mary Anthony <mary@docker.com>
25 lines
779 B
Docker
25 lines
779 B
Docker
FROM docs/base:hugo
|
|
MAINTAINER Mary Anthony <mary@docker.com> (@moxiegirl)
|
|
|
|
# to get the git info for this repo
|
|
COPY . /src
|
|
|
|
COPY . /docs/content/kitematic/
|
|
|
|
# Sed to process GitHub Markdown
|
|
# 1-2 Remove comment code from metadata block
|
|
# 3 Remove .md extension from link text
|
|
# 4 Change ](/ to ](/project/ in links
|
|
# 5 Change ](word) to ](/project/word)
|
|
# 6 Change ](../../ to ](/project/
|
|
# 7 Change ](../ to ](/project/word)
|
|
#
|
|
#
|
|
RUN find /docs/content/kitematic -type f -name "*.md" -exec sed -i.old \
|
|
-e '/^<!.*metadata]>/g' \
|
|
-e '/^<!.*end-metadata.*>/g' \
|
|
-e 's/\([(]\)\(.*\)\(\.md\)/\1\2/g' \
|
|
-e 's/\(\]\)\([(]\)\(\/\)/\1\2\/kitematic\//g' \
|
|
-e 's/\(\][(]\)\([A-z]*[)]\)/\]\(\/kitematic\/\2/g' \
|
|
-e 's/\(\][(]\)\(\.\.\/\)/\1\/kitematic\//g' {} \;
|