16 lines
		
	
	
		
			541 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			541 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| ---
 | |
| layout: none
 | |
| ---
 | |
| [
 | |
|   {% for post in site.notes %}
 | |
|     {
 | |
|       "title"    : "{{ post.title | escape }}",
 | |
|       "category" : "{{ post.category }}",
 | |
|       "tags"     : "{{ post.tags | join: ', ' }}",
 | |
|       "url"      : "{{ site.baseurl }}{{ post.url }}",
 | |
|       "date"     : "{{ post.date }}",
 | |
|       "content"  : "{{ post.content | strip_html | strip_newlines | smartify }}",
 | |
|       "excerpt"  : "{{ post.content | strip_html | strip_newlines | smartify | truncatewords: 20 }}"
 | |
|     } {% unless forloop.last %},{% endunless %}
 | |
|   {% endfor %}
 | |
| ] | 
