17 lines
		
	
	
		
			446 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			446 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								<!doctype html>
							 | 
						||
| 
								 | 
							
								<html>
							 | 
						||
| 
								 | 
							
								<head>
							 | 
						||
| 
								 | 
							
								    <meta charset="utf-8"/>
							 | 
						||
| 
								 | 
							
								    <title>Marked in the browser</title>
							 | 
						||
| 
								 | 
							
								    <link rel="stylesheet" href="assets/main.css">
							 | 
						||
| 
								 | 
							
								</head>
							 | 
						||
| 
								 | 
							
								<body>
							 | 
						||
| 
								 | 
							
								    <div id="content"></div>
							 | 
						||
| 
								 | 
							
								    <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
							 | 
						||
| 
								 | 
							
								    <script>
							 | 
						||
| 
								 | 
							
								        document.getElementById('content').innerHTML =
							 | 
						||
| 
								 | 
							
								        marked.parse('# Marked in the browser\n\nRendered by **marked**.');
							 | 
						||
| 
								 | 
							
								    </script>
							 | 
						||
| 
								 | 
							
								</body>
							 | 
						||
| 
								 | 
							
								</html>
							 |