Skip to content

Commit

Permalink
refactor: remove text/css from default theme #1203, #1200
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcw authored Jan 25, 2019
1 parent 8a00a0f commit c5f32ae
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions __tests__/__snapshots__/test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1389,10 +1389,10 @@ exports[`html nested.input.js 1`] = `
<meta charset='utf-8' />
<title> | Documentation</title>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link href='assets/bass.css' type='text/css' rel='stylesheet' />
<link href='assets/style.css' type='text/css' rel='stylesheet' />
<link href='assets/github.css' type='text/css' rel='stylesheet' />
<link href='assets/split.css' type='text/css' rel='stylesheet' />
<link href='assets/bass.css' rel='stylesheet' />
<link href='assets/style.css' rel='stylesheet' />
<link href='assets/github.css' rel='stylesheet' />
<link href='assets/split.css' rel='stylesheet' />
<meta name='description' content='a documentation generator'>
</head>
<body class='documentation m0'>
Expand Down
8 changes: 4 additions & 4 deletions src/default_theme/index._
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<meta charset='utf-8' />
<title><%- config['project-name'] %> <%- config['project-version'] %> | Documentation</title>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link href='assets/bass.css' type='text/css' rel='stylesheet' />
<link href='assets/style.css' type='text/css' rel='stylesheet' />
<link href='assets/github.css' type='text/css' rel='stylesheet' />
<link href='assets/split.css' type='text/css' rel='stylesheet' /><% if (config['project-description']) { %>
<link href='assets/bass.css' rel='stylesheet' />
<link href='assets/style.css' rel='stylesheet' />
<link href='assets/github.css' rel='stylesheet' />
<link href='assets/split.css' rel='stylesheet' /><% if (config['project-description']) { %>
<meta name='description' content='<%- config['project-description'] %>'><% } %>
</head>
<body class='documentation m0'>
Expand Down

0 comments on commit c5f32ae

Please sign in to comment.