Skip to content

Commit c237ac3

Browse files
eljefedelrodeodeljefeMyles Borins
authored andcommitted
doc: git mv to .md
Original commit: 0800c0a doc: git mv to .md * doc: rename .markdown references in content * doc: rename to .md in tools * doc: rename to .md in CONTRIBUTING.md PR-URL: #4747 Reviewed-By: Myles Borins <[email protected]> Reviewed-By: techjeffharris Reviewed-By: Johan Bergström <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent fb03e57 commit c237ac3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+15
-15
lines changed

β€ŽCONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

β€ŽMakefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ test/gc/node_modules/weak/build/Release/weakref.node: $(NODE_EXE)
127127
--nodedir="$(shell pwd)"
128128

129129
# Implicitly depends on $(NODE_EXE), see the build-addons rule for rationale.
130-
test/addons/.docbuildstamp: doc/api/addons.markdown
130+
test/addons/.docbuildstamp: doc/api/addons.md
131131
$(RM) -r test/addons/??_*/
132132
$(NODE) tools/doc/addon-verify.js
133133
touch $@
@@ -249,9 +249,9 @@ test-v8-benchmarks:
249249
test-v8-all: test-v8 test-v8-intl test-v8-benchmarks
250250
# runs all v8 tests
251251

252-
apidoc_sources = $(wildcard doc/api/*.markdown)
253-
apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \
254-
$(addprefix out/,$(apidoc_sources:.markdown=.json))
252+
apidoc_sources = $(wildcard doc/api/*.md)
253+
apidocs = $(addprefix out/,$(apidoc_sources:.md=.html)) \
254+
$(addprefix out/,$(apidoc_sources:.md=.json))
255255

256256
apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets
257257

@@ -268,10 +268,10 @@ out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
268268
out/doc/%: doc/%
269269
cp -r $< $@
270270

271-
out/doc/api/%.json: doc/api/%.markdown $(NODE_EXE)
271+
out/doc/api/%.json: doc/api/%.md $(NODE_EXE)
272272
$(NODE) tools/doc/generate.js --format=json $< > $@
273273

274-
out/doc/api/%.html: doc/api/%.markdown $(NODE_EXE)
274+
out/doc/api/%.html: doc/api/%.md $(NODE_EXE)
275275
$(NODE) tools/doc/generate.js --format=html --template=doc/template.html $< > $@
276276

277277
docopen: out/doc/api/all.html

0 commit comments

Comments
Β (0)