Remove print in example
This commit is contained in:
		
							parent
							
								
									45779c6e3d
								
							
						
					
					
						commit
						e2ee303815
					
				| 
						 | 
					@ -2,9 +2,8 @@ import os
 | 
				
			||||||
from eorg.parser import parse
 | 
					from eorg.parser import parse
 | 
				
			||||||
from eorg.html import generate
 | 
					from eorg.html import generate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
doc=[]
 | 
					doc = []
 | 
				
			||||||
with open(os.path.abspath('../../tests/fixtures/test.org'), 'r') as fp:
 | 
					with open(os.path.abspath("../../tests/fixtures/test.org"), "r") as fp:
 | 
				
			||||||
    doc = parse(fp)
 | 
					    doc = parse(fp)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
print('#################')
 | 
					 | 
				
			||||||
print(generate(doc).read())
 | 
					print(generate(doc).read())
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue