Skip to content

Commit 7fc1324

Browse files
authored
Merge pull request #430 from pfitaxel/fix-markup
fix: details (HTML5 markup)
2 parents 017f049 + e5ce820 commit 7fc1324

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

src/main/learnocaml_main.ml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ let process_html_file orig_file dest_file base_url no_secret =
270270
when no_secret && List.mem (("", "id"), "secret-section") attrs ->
271271
`Start_element ((e, "div"), (("", "style"), "display:none")::attrs)
272272
| t -> t)
273-
|> Markup.pretty_print
274273
|> Markup.write_html
275274
|> Markup_lwt.to_lwt_stream
276275
|> Lwt_io.write_chars wfile >>= fun () ->

static/description.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html>
33

44
<head>

static/exercise.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html>
33
<head>
44
<meta charset="UTF-8">

static/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!DOCTYPE html>
12
<html>
23
<head>
34
<meta charset="UTF-8">

static/partition-view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html>
33
<head>
44
<meta charset="UTF-8">

static/playground.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html>
33
<head>
44
<meta charset="UTF-8">

static/student-view.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html>
33
<head>
44
<meta charset="UTF-8">

0 commit comments

Comments
 (0)