mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:22:45 +00:00 
			
		
		
		
	 57ec19f963
			
		
	
	
		57ec19f963
		
	
	
	
	
		
			
			This api is useful when you want to render a markdown document to HTML, but you want to embed it in a existing html document.
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			527 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			527 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/NonnullOwnPtrVector.h>
 | |
| #include <AK/String.h>
 | |
| #include <LibMarkdown/Block.h>
 | |
| 
 | |
| namespace Markdown {
 | |
| 
 | |
| class Document final {
 | |
| public:
 | |
|     String render_to_html() const;
 | |
|     String render_to_inline_html() const;
 | |
|     String render_for_terminal(size_t view_width = 0) const;
 | |
| 
 | |
|     static OwnPtr<Document> parse(const StringView&);
 | |
| 
 | |
| private:
 | |
|     NonnullOwnPtrVector<Block> m_blocks;
 | |
| };
 | |
| 
 | |
| }
 |