We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fb10a7 commit 7fc2a85Copy full SHA for 7fc2a85
.circleci/config.yml
@@ -2,7 +2,7 @@ version: 2
2
jobs:
3
build:
4
docker:
5
- - image: circleci/ruby:2.5.1-node
+ - image: cimg/ruby2.6-node
6
steps:
7
- run:
8
name: Checkout
_devel/formatter.py
@@ -17,7 +17,12 @@
17
else:
18
markdown += [line]
19
20
- header = yaml.load(''.join(header))
+ header = yaml.load(''.join(header), Loader=yaml.BaseLoader)
21
+ if header is None:
22
+ # This assumes the markdown document has a yaml header
23
+ # but some documents, like the README.md do not
24
+ # Don't bother rendering them
25
+ exit()
26
27
images = []
28
try:
0 commit comments