Skip to content

Commit

Permalink
renamed jade to pug
Browse files Browse the repository at this point in the history
  • Loading branch information
knowsuchagency committed Jun 23, 2017
1 parent 440bcea commit d108342
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ It allows you to take something like this
html
head
title my jade template
title my pug template
body
#content
h1 Hello #{name}
Expand All @@ -80,7 +80,7 @@ and sprinkle some Python over it
context = {
'name': 'Bob',
'books': ['coloring book', 'audio book', "O'Reilly book"],
type: 'text',
'type': 'text',
}
print(render(filepath=file, context=context, pretty=True))
Expand All @@ -92,7 +92,7 @@ to render this
<!DOCTYPE html>
<html>
<head>
<title>my jade template</title>
<title>my pug template</title>
</head>
<body>
<div id="content">
Expand Down

0 comments on commit d108342

Please sign in to comment.