Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don’t generate invalid closing </link> tags #13

Merged
merged 1 commit into from
Nov 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pywebpack/manifests.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class ManifestEntry(object):

templates = {
'.js': '<script src="{}"></script>',
'.css': '<link rel="stylesheet" href="{}"></link>',
'.css': '<link rel="stylesheet" href="{}" />',
}

def __init__(self, name, paths):
Expand Down
4 changes: 2 additions & 2 deletions tests/test_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def test_render(exmanif):
'<script src="/a.js"></script>' \
'<script src="/b.js"></script>'
assert exmanif.styles.render() == exmanif['styles'].render() == \
'<link rel="stylesheet" href="/a.css"></link>' \
'<link rel="stylesheet" href="/b.css"></link>'
'<link rel="stylesheet" href="/a.css" />' \
'<link rel="stylesheet" href="/b.css" />'


def test_manifest_add_same_name():
Expand Down