TriviaMD 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c3b042230b7218be57af4349eb5f5c733eca5fa2e43011e5ab02ead83147d6b
4
- data.tar.gz: '028e3233cbbcd451fed7c4fa42ff045d73aa95490bfdb169e25b8822ca5d5e78'
3
+ metadata.gz: 5462cf53b43e7aa7a44fa2b808e185ca62799e5e751e06ba05e72a960584011e
4
+ data.tar.gz: 67e4fab1f6d6ad838d45861646d6c0e1ef413dff395883254d9e8f5280edacbc
5
5
  SHA512:
6
- metadata.gz: 8b72e80621bc7826f53b59d354ac09e5c66859c4f82db4295691955f5f80115c2694ba9e553c64fdbe6f68123c2dafc508b44f5e2a732ac69b637c2e21339724
7
- data.tar.gz: 22de231eea88b58636967ed3e40fa51c8ceb0c851faf67f6671d44b8a66da07279586641f21e958826cf8ba7657de21f981c85ecf18f2ab2faf282bacabf824d
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: escape_html(c.children.first.value) } } if c.type == :p && c.children.first.type == :codespan
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: TriviaMD
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bence Pjatacsuk