small change, commiting to work on builds
This commit is contained in:
		
							parent
							
								
									6d10a7ba68
								
							
						
					
					
						commit
						1f2145c9ca
					
				| 
						 | 
				
			
			@ -14,10 +14,11 @@ class readMarkdown():
 | 
			
		|||
 | 
			
		||||
    def markdown(self):
 | 
			
		||||
        file = open(self.mdFile, 'r')
 | 
			
		||||
        outStr = str(markdown.markdown(file.read())) #TODO: I really want nice tab indentations
 | 
			
		||||
        self.outStr = markdown.markdown(file.read(), tab_length=4, output_format="html")
 | 
			
		||||
        file.close()
 | 
			
		||||
        return(outStr)
 | 
			
		||||
        return(self.outStr)
 | 
			
		||||
 | 
			
		||||
    
 | 
			
		||||
 | 
			
		||||
    def __str__(self):
 | 
			
		||||
        return(str(self.markdown()))
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue