File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 99
1010.PHONY : release
1111release :
12- pandoc README.md -t rst > README.rst
12+ pandoc README.md -t rst | awk ' BEGIN{ skip=0 }; { if(match($$0, /\.\. figure.*/)) { skip=3 } else if(skip==0) { print } else if(skip>0) { skip=skip-1 } }; ' > README.rst
Original file line number Diff line number Diff line change @@ -271,10 +271,6 @@ select 'led' as the target. Please type the command as below.
271271Then you got a png file (out.png). The picture shows that the definition
272272of 'led' is a part-selection of 'count' from 23-bit to 16-bit.
273273
274- .. figure :: http://cdn-ak.f.st-hatena.com/images/fotolife/s/sxhxtxa/20140101/20140101045641.png
275- :alt: out.png
276-
277- out.png
278274Control-flow analyzer
279275---------------------
280276
@@ -306,10 +302,6 @@ state machine.
306302You got also a png file (top\_ state.png). The picture shows that the
307303graphical structure of the state machine.
308304
309- .. figure :: http://cdn-ak.f.st-hatena.com/images/fotolife/s/sxhxtxa/20140101/20140101045835.png
310- :alt: top\_state.png
311-
312- top\_ state.png
313305Code generator
314306--------------
315307
You can’t perform that action at this time.
0 commit comments