TriviaMD 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/quizzes_v1.rb +0 -2
- data/lib/trivia_parser.rb +11 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5462cf53b43e7aa7a44fa2b808e185ca62799e5e751e06ba05e72a960584011e
|
4
|
+
data.tar.gz: 67e4fab1f6d6ad838d45861646d6c0e1ef413dff395883254d9e8f5280edacbc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98a333278afe3f7317169ea143be56215a1e5182b929fd8a5c6cd496c076699b9bc5addd95afa762f4d88e7b8b15b58d85219cdeb6be6971b147a1856077c32a
|
7
|
+
data.tar.gz: 4f57ba77589d921a59a652522838ef0e2a6fdd1b44d10ab8e71d7e67a65fd9182655bd660cc672a0f1653d1a1d945bd1b74c55c4e26b176323f0513cee860e31
|
data/lib/quizzes_v1.rb
CHANGED
@@ -33,13 +33,11 @@ class QuizzesV1
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def create_question(quiz_id,question)
|
36
|
-
puts quiz_id
|
37
36
|
url = quiz_base_url + "/#{quiz_id}/questions"
|
38
37
|
body = {
|
39
38
|
question: {
|
40
39
|
question_text: question["question"],
|
41
40
|
question_type: "multiple_answers_question",
|
42
|
-
neutral_comments: question["reason"],
|
43
41
|
neutral_comments_html: question["reason"],
|
44
42
|
points_possible: 1
|
45
43
|
}
|
data/lib/trivia_parser.rb
CHANGED
@@ -7,15 +7,24 @@ class TriviaParser
|
|
7
7
|
@debug = debug
|
8
8
|
end
|
9
9
|
|
10
|
+
|
10
11
|
def get_event(c)
|
11
12
|
return { type: :event_trivia_header } if c.type == :header && c.options[:level] == 2 && c.options[:raw_text] == "Trivia"
|
12
13
|
return { type: :event_header } if c.type == :header
|
13
|
-
return { type: :event_reason, payload: { reason:
|
14
|
+
return { type: :event_reason, payload: { reason: parse_reason(c.children.first) } } if c.type == :p && (c.children.first.type == :codespan || c.children.first.type == :codeblock)
|
14
15
|
return { type: :event_answers, payload: { answers: parse_answers(c) } } if c.type == :ul
|
15
16
|
return { type: :event_question, payload: { question: c.children.first.children.first.value } } if c.type == :blockquote
|
16
17
|
return { type: :no_event }
|
17
18
|
end
|
18
19
|
|
20
|
+
def parse_reason(c)
|
21
|
+
if c.value.start_with?("html\n")
|
22
|
+
c.value.split("html\n")[1].strip
|
23
|
+
else
|
24
|
+
escape_html(c.value)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
19
28
|
def parse_answers(c)
|
20
29
|
c.children.map do |li|
|
21
30
|
head = li.children.first.children.first
|
@@ -42,7 +51,7 @@ class TriviaParser
|
|
42
51
|
|
43
52
|
@doc.root.children.each do |c|
|
44
53
|
event = get_event(c)
|
45
|
-
puts [state, c.type, event] if @debug
|
54
|
+
puts [state, c.type, event] if @debug
|
46
55
|
|
47
56
|
case event[:type]
|
48
57
|
when :event_trivia_header
|