Skip to content

Commit 4b83769

Browse files
eljefedelrodeodeljefeMyles Borins
authored andcommitted
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 e6f4a17 commit 4b83769

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

+27
-27
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
@@ -131,7 +131,7 @@ test/gc/node_modules/weak/build/Release/weakref.node: $(NODE_EXE)
131131
--nodedir="$(shell pwd)"
132132

133133
# Implicitly depends on $(NODE_EXE), see the build-addons rule for rationale.
134-
test/addons/.docbuildstamp: doc/api/addons.markdown
134+
test/addons/.docbuildstamp: doc/api/addons.md
135135
$(RM) -r test/addons/??_*/
136136
$(NODE) tools/doc/addon-verify.js
137137
touch $@
@@ -239,9 +239,9 @@ test-v8-benchmarks:
239239
test-v8-all: test-v8 test-v8-intl test-v8-benchmarks
240240
# runs all v8 tests
241241

242-
apidoc_sources = $(wildcard doc/api/*.markdown)
243-
apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \
244-
$(addprefix out/,$(apidoc_sources:.markdown=.json))
242+
apidoc_sources = $(wildcard doc/api/*.md)
243+
apidocs = $(addprefix out/,$(apidoc_sources:.md=.html)) \
244+
$(addprefix out/,$(apidoc_sources:.md=.json))
245245

246246
apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets
247247

@@ -258,10 +258,10 @@ out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
258258
out/doc/%: doc/%
259259
cp -r $< $@
260260

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

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

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

0 commit comments

Comments
Β (0)