Skip to content

Commit

Permalink
Feature/add markdown body to container (#87)
Browse files Browse the repository at this point in the history
* Add .markdown-body to the container class

* Bump version
  • Loading branch information
keitaoouchi authored Sep 11, 2021
1 parent 18fc5c7 commit 8fa17d9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- MarkdownView (1.8.1)

This comment has been minimized.

Copy link
@abddullahhaq
- MarkdownView (1.8.2)

DEPENDENCIES:
- MarkdownView (from `../`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
MarkdownView: ba5e02ab5fe527e54afc8be2f3fec8fab362cda1
MarkdownView: cd0d3bda940f54a1da246559f90febf4927ce2a2

PODFILE CHECKSUM: aca8c849eff30cf020f460dc2fb5cc0b4a16e14a

Expand Down
2 changes: 1 addition & 1 deletion MarkdownView.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "MarkdownView"
s.version = "1.8.1"
s.version = "1.8.2"
s.summary = "Markdown View for iOS."
s.homepage = "https://github.com/keitaoouchi/MarkdownView"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion Sources/MarkdownView/Resources/non_styled.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<script src="./main.js"></script>
</head>
<body>
<div class="container" id="contents"></div>
<div class="container markdown-body" id="contents"></div>
</body>
</html>
2 changes: 1 addition & 1 deletion Sources/MarkdownView/Resources/styled.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<script src="./main.js"></script>
</head>
<body>
<div class="container" id="contents"></div>
<div class="container markdown-body" id="contents"></div>
</body>
</html>

0 comments on commit 8fa17d9

Please sign in to comment.