Skip to content

Commit

Permalink
JSON metadata is not worth the trouble
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto Alsina committed May 29, 2017
1 parent 74abaf8 commit 2623322
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 23 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Expand Up @@ -4,7 +4,7 @@ New in master
Features
--------

* Support for JSON, YAML and TOML metadata (Issue #2801)
* Support for YAML and TOML metadata (Issue #2801)

Bugfixes
--------
Expand Down
12 changes: 0 additions & 12 deletions docs/manual.txt
Expand Up @@ -312,18 +312,6 @@ TOML metadata should be wrapped by a "+++" separator and in that case, the usual
date = "2012-09-15 19:52:05 UTC"
+++

JSON metadata is wrapped in braces and the usual JSON syntax applies. Be careful not to leave any
braces alone in a line other than the last one:

.. code:: json

{
title: "How to make money"
slug: "how-to-make-money"
date: "2012-09-15 19:52:05 UTC"
}


Basic
`````

Expand Down
10 changes: 0 additions & 10 deletions nikola/post.py
Expand Up @@ -1053,16 +1053,6 @@ def _get_metadata_from_file(meta_data):
meta = toml.load('\n'.join(meta_data[1:idx]))
return meta

# If 1st line is '{', then it's JSON metadata
if meta_data[0] == '{':
idx = meta_data.index('}', 1)
meta = json.loads('\n'.join(meta_data[1:idx]))
# We expect empty metadata to be '', not None
for k in meta:
if meta[k] is None:
meta[k] = ''
return meta

# First, get metadata from the beginning of the file,
# up to first empty line

Expand Down

0 comments on commit 2623322

Please sign in to comment.