]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix markdown for some of the examples...
authorMichael Sweet <msweet@msweet-imac.local>
Thu, 17 Mar 2016 19:45:31 +0000 (15:45 -0400)
committerMichael Sweet <msweet@msweet-imac.local>
Thu, 17 Mar 2016 19:45:31 +0000 (15:45 -0400)
CONTRIBUTING.md

index bb5dd410c5f29346cd1570f5dc7638c730b8ab54..32e36ae1f5fb749f729538575ca387ad878864c8 100644 (file)
@@ -409,27 +409,22 @@ is a list of assumptions we follow when constructing makefiles:
   the target, e.g.:
 
       target:
-
-      _TAB_ target commands
+      TAB target commands
 
 - Dependencies; we assume that the make program supports recursive dependencies
   on targets, e.g.:
 
       target: foo bar
-
-      _TAB_ target commands
+      TAB target commands
 
       foo: bla
-
-      _TAB_ foo commands
+      TAB foo commands
 
       bar:
-
-      _TAB_ bar commands
+      TAB bar commands
 
       bla:
-
-      _TAB_ bla commands
+      TAB bla commands
 
 - Variable Definition; we assume that the make program supports variable
   definition on the command-line or in the makefile using the following form:
@@ -452,16 +447,13 @@ is a list of assumptions we follow when constructing makefiles:
   assumed dependencies, e.g.:
 
       .SUFFIXES: .c .o
-
       .c.o:
-
-      _TAB_ $(CC) $(CFLAGS) -o $@ -c $<
+      TAB $(CC) $(CFLAGS) -o $@ -c $<
 
 - Include Files; we assume that the make program supports the include
   directive, e.g.:
 
       include ../Makedefs
-
       include Dependencies
 
 - Comments; we assume that comments begin with a # character and proceed to the