https://github.com/quicwg/base-drafts
Raw File
Tip revision: dd48c42249502cd79a358c7bfa1ec8c858d75fcc authored by Martin Thomson on 10 June 2017, 13:33:13 UTC
Move stream ID fields to start of frames
Tip revision: dd48c42
Makefile
MD_PREPROCESSOR := sed -e 's/{DATE}/$(shell date '+%Y-%m')/g'

include lib/main.mk

lib/main.mk:
ifneq (,$(shell git submodule status lib 2>/dev/null))
	git submodule sync
	git submodule update --init
else
	git clone -q --depth 10 -b master https://github.com/martinthomson/i-d-template.git lib
endif

latest::
	@err=0; for f in draft-*.md ; do \
	  if grep -n ' $$' "$$f"; then \
	    echo "$$f contains trailing whitespace"; err=1; \
	  fi; \
	  if cat "$$f" | (l=0; while read -r a; do l=$$(($$l + 1)); echo -E "$$l:$$a"; done) | \
	     sed -e '1,/--- abstract/d;/^[0-9]*: *|/d' | tr -d '\r' | grep '^[0-9]*:.\{81\}'; then \
	    echo "$$f contains a line with >80 characters"; err=1; \
	  fi; \
	  if cat "$$f" | (l=0; while read -r a; do l=$$(($$l + 1)); echo -E "$$l:$$a"; done) | \
	     sed -e '/^[0-9]*:~~~/,/^[0-9]*:~~~/p;/^[0-9]*:```/,/^[0-9]*:```/p;d' | \
	     tr -d '\r' | grep '^[0-9]*:.\{70\}'; then \
	    echo "$$f contains a figure with >69 characters"; err=1; \
	  fi; \
	done; [ "$$err" -eq 0 ]
back to top