markly 0.8.0 → 0.8.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f8bb5972577921f29b489d7ef01e509d5e9a771f1c864cad7e64e4b2c7129a8
4
- data.tar.gz: 237d34500aca112b8aaede861618ad205a2518d86a04e7a9f1dcc06b4101de45
3
+ metadata.gz: 2d10fb7a74c3c23a19491d3bc5a884e18b3f9ec86dde3a15dc2948fe1e66bb99
4
+ data.tar.gz: 56a61a7482fa7890c4d38134a0981e72aa1e982ffce32e25172d815bae318748
5
5
  SHA512:
6
- metadata.gz: ea92b1d1b3ae144d31c75445d58fed31201a9d0d5df4c8922ae85d1384f35abe630df8213f8f33a084fdff6e02222fdbb663364a898cff5a98af5f71b09a08b2
7
- data.tar.gz: 8bf9723221304cdd0d7a8d9fbfb74d4f9f16badcf08d28bc919226e471a7612adf5e1bd6fa3ae4ac2f94b2108e46c6c5c26af4a38aec48e796af097b811d30fb
6
+ metadata.gz: 2ca598c38eb22ce671db4aacbbe91ce32e5611f7aa7d8786ea1d1198857dd6b60265607b9168c5951ba5c3b5df6437316a36378860f5ba85f0ff8e2358924491
7
+ data.tar.gz: 17c4e881fa8c69a1d7cc1b034bc609d097e46cd2c0c702a6b59c15967dedfb0720ff1851e1d5260adb73a3654681b9b59169b982a032d8aef5c14a3dc3611fcc
checksums.yaml.gz.sig CHANGED
Binary file
@@ -0,0 +1,270 @@
1
+
2
+ SHELL = /bin/sh
3
+
4
+ # V=0 quiet, V=1 verbose. other values don't work.
5
+ V = 0
6
+ V0 = $(V:0=)
7
+ Q1 = $(V:1=)
8
+ Q = $(Q1:0=@)
9
+ ECHO1 = $(V:1=@ :)
10
+ ECHO = $(ECHO1:0=@ echo)
11
+ NULLCMD = :
12
+
13
+ #### Start of system configuration section. ####
14
+
15
+ srcdir = .
16
+ topdir = /Users/samuel/.rubies/ruby-3.2.1/include/ruby-3.2.0
17
+ hdrdir = $(topdir)
18
+ arch_hdrdir = /Users/samuel/.rubies/ruby-3.2.1/include/ruby-3.2.0/arm64-darwin22
19
+ PATH_SEPARATOR = :
20
+ VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
21
+ prefix = $(DESTDIR)/Users/samuel/.rubies/ruby-3.2.1
22
+ rubysitearchprefix = $(rubylibprefix)/$(sitearch)
23
+ rubyarchprefix = $(rubylibprefix)/$(arch)
24
+ rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
25
+ exec_prefix = $(prefix)
26
+ vendorarchhdrdir = $(vendorhdrdir)/$(sitearch)
27
+ sitearchhdrdir = $(sitehdrdir)/$(sitearch)
28
+ rubyarchhdrdir = $(rubyhdrdir)/$(arch)
29
+ vendorhdrdir = $(rubyhdrdir)/vendor_ruby
30
+ sitehdrdir = $(rubyhdrdir)/site_ruby
31
+ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
32
+ vendorarchdir = $(vendorlibdir)/$(sitearch)
33
+ vendorlibdir = $(vendordir)/$(ruby_version)
34
+ vendordir = $(rubylibprefix)/vendor_ruby
35
+ sitearchdir = $(sitelibdir)/$(sitearch)
36
+ sitelibdir = $(sitedir)/$(ruby_version)
37
+ sitedir = $(rubylibprefix)/site_ruby
38
+ rubyarchdir = $(rubylibdir)/$(arch)
39
+ rubylibdir = $(rubylibprefix)/$(ruby_version)
40
+ sitearchincludedir = $(includedir)/$(sitearch)
41
+ archincludedir = $(includedir)/$(arch)
42
+ sitearchlibdir = $(libdir)/$(sitearch)
43
+ archlibdir = $(libdir)/$(arch)
44
+ ridir = $(datarootdir)/$(RI_BASE_NAME)
45
+ mandir = $(datarootdir)/man
46
+ localedir = $(datarootdir)/locale
47
+ libdir = $(exec_prefix)/lib
48
+ psdir = $(docdir)
49
+ pdfdir = $(docdir)
50
+ dvidir = $(docdir)
51
+ htmldir = $(docdir)
52
+ infodir = $(datarootdir)/info
53
+ docdir = $(datarootdir)/doc/$(PACKAGE)
54
+ oldincludedir = $(DESTDIR)/usr/include
55
+ includedir = $(SDKROOT)$(prefix)/include
56
+ runstatedir = $(localstatedir)/run
57
+ localstatedir = $(prefix)/var
58
+ sharedstatedir = $(prefix)/com
59
+ sysconfdir = $(prefix)/etc
60
+ datadir = $(datarootdir)
61
+ datarootdir = $(prefix)/share
62
+ libexecdir = $(exec_prefix)/libexec
63
+ sbindir = $(exec_prefix)/sbin
64
+ bindir = $(exec_prefix)/bin
65
+ archdir = $(rubyarchdir)
66
+
67
+
68
+ CC_WRAPPER =
69
+ CC = clang
70
+ CXX = clang++
71
+ LIBRUBY = $(LIBRUBY_A)
72
+ LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
73
+ LIBRUBYARG_SHARED =
74
+ LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static -framework CoreFoundation $(MAINLIBS)
75
+ empty =
76
+ OUTFLAG = -o $(empty)
77
+ COUTFLAG = -o $(empty)
78
+ CSRCFLAG = $(empty)
79
+
80
+ RUBY_EXTCONF_H =
81
+ cflags = -fdeclspec $(optflags) $(debugflags) $(warnflags)
82
+ cxxflags =
83
+ optflags = -O3 -fno-fast-math
84
+ debugflags = -ggdb3
85
+ warnflags = -Wall -Wextra -Wextra-tokens -Wdeprecated-declarations -Wdivision-by-zero -Wdiv-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wundef
86
+ cppflags =
87
+ CCDLFLAGS = -fno-common
88
+ CFLAGS = $(CCDLFLAGS) $(cflags) -pipe -O3 -std=c99 $(ARCH_FLAG)
89
+ INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
90
+ DEFS =
91
+ CPPFLAGS = -I/opt/local/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT $(DEFS) $(cppflags)
92
+ CXXFLAGS = $(CCDLFLAGS) -fdeclspec $(ARCH_FLAG)
93
+ ldflags = -L. -fstack-protector-strong -L/opt/local/lib
94
+ dldflags = -L/opt/local/lib -Wl,-multiply_defined,suppress -bundle_loader '$(BUILTRUBY)'
95
+ ARCH_FLAG =
96
+ DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
97
+ LDSHARED = $(CC) -dynamic -bundle
98
+ LDSHAREDXX = $(CXX) -dynamic -bundle
99
+ AR = ar
100
+ EXEEXT =
101
+
102
+ RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
103
+ RUBY_SO_NAME = ruby.3.2
104
+ RUBYW_INSTALL_NAME =
105
+ RUBY_VERSION_NAME = $(RUBY_BASE_NAME)-$(ruby_version)
106
+ RUBYW_BASE_NAME = rubyw
107
+ RUBY_BASE_NAME = ruby
108
+
109
+ arch = arm64-darwin22
110
+ sitearch = $(arch)
111
+ ruby_version = 3.2.0
112
+ ruby = $(bindir)/$(RUBY_BASE_NAME)
113
+ RUBY = $(ruby)
114
+ BUILTRUBY = $(bindir)/$(RUBY_BASE_NAME)
115
+ ruby_headers = $(hdrdir)/ruby.h $(hdrdir)/ruby/backward.h $(hdrdir)/ruby/ruby.h $(hdrdir)/ruby/defines.h $(hdrdir)/ruby/missing.h $(hdrdir)/ruby/intern.h $(hdrdir)/ruby/st.h $(hdrdir)/ruby/subst.h $(arch_hdrdir)/ruby/config.h
116
+
117
+ RM = rm -f
118
+ RM_RF = rm -fr
119
+ RMDIRS = rmdir -p
120
+ MAKEDIRS = /opt/local/bin/gmkdir -p
121
+ INSTALL = /opt/local/bin/ginstall -c
122
+ INSTALL_PROG = $(INSTALL) -m 0755
123
+ INSTALL_DATA = $(INSTALL) -m 644
124
+ COPY = cp
125
+ TOUCH = exit >
126
+
127
+ #### End of system configuration section. ####
128
+
129
+ preload =
130
+ libpath = . $(libdir) /opt/local/lib
131
+ LIBPATH = -L. -L$(libdir) -L/opt/local/lib
132
+ DEFFILE =
133
+
134
+ CLEANFILES = mkmf.log
135
+ DISTCLEANFILES =
136
+ DISTCLEANDIRS =
137
+
138
+ extout =
139
+ extout_prefix =
140
+ target_prefix = /markly
141
+ LOCAL_LIBS =
142
+ LIBS = -lpthread
143
+ ORIG_SRCS = arena.c autolink.c blocks.c buffer.c cmark.c cmark_ctype.c commonmark.c core-extensions.c ext_scanners.c footnotes.c houdini_href_e.c houdini_html_e.c houdini_html_u.c html.c inlines.c iterator.c latex.c linked_list.c man.c map.c markly.c node.c plaintext.c plugin.c references.c registry.c render.c scanners.c strikethrough.c syntax_extension.c table.c tagfilter.c tasklist.c utf8.c xml.c
144
+ SRCS = $(ORIG_SRCS)
145
+ OBJS = arena.o autolink.o blocks.o buffer.o cmark.o cmark_ctype.o commonmark.o core-extensions.o ext_scanners.o footnotes.o houdini_href_e.o houdini_html_e.o houdini_html_u.o html.o inlines.o iterator.o latex.o linked_list.o man.o map.o markly.o node.o plaintext.o plugin.o references.o registry.o render.o scanners.o strikethrough.o syntax_extension.o table.o tagfilter.o tasklist.o utf8.o xml.o
146
+ HDRS = $(srcdir)/autolink.h $(srcdir)/buffer.h $(srcdir)/chunk.h $(srcdir)/cmark-gfm-core-extensions.h $(srcdir)/cmark-gfm-extension_api.h $(srcdir)/cmark-gfm-extensions_export.h $(srcdir)/cmark-gfm.h $(srcdir)/cmark-gfm_export.h $(srcdir)/cmark-gfm_version.h $(srcdir)/cmark_ctype.h $(srcdir)/config.h $(srcdir)/ext_scanners.h $(srcdir)/footnotes.h $(srcdir)/houdini.h $(srcdir)/html.h $(srcdir)/inlines.h $(srcdir)/iterator.h $(srcdir)/map.h $(srcdir)/markly.h $(srcdir)/node.h $(srcdir)/parser.h $(srcdir)/plugin.h $(srcdir)/references.h $(srcdir)/registry.h $(srcdir)/render.h $(srcdir)/scanners.h $(srcdir)/strikethrough.h $(srcdir)/syntax_extension.h $(srcdir)/table.h $(srcdir)/tagfilter.h $(srcdir)/tasklist.h $(srcdir)/utf8.h
147
+ LOCAL_HDRS =
148
+ TARGET = markly
149
+ TARGET_NAME = markly
150
+ TARGET_ENTRY = Init_$(TARGET_NAME)
151
+ DLLIB = $(TARGET).bundle
152
+ EXTSTATIC =
153
+ STATIC_LIB =
154
+
155
+ TIMESTAMP_DIR = .
156
+ BINDIR = $(bindir)
157
+ RUBYCOMMONDIR = $(sitedir)$(target_prefix)
158
+ RUBYLIBDIR = $(sitelibdir)$(target_prefix)
159
+ RUBYARCHDIR = $(sitearchdir)$(target_prefix)
160
+ HDRDIR = $(sitehdrdir)$(target_prefix)
161
+ ARCHHDRDIR = $(sitearchhdrdir)$(target_prefix)
162
+ TARGET_SO_DIR =
163
+ TARGET_SO = $(TARGET_SO_DIR)$(DLLIB)
164
+ CLEANLIBS = $(TARGET_SO) $(TARGET_SO).dSYM
165
+ CLEANOBJS = $(OBJS) *.bak
166
+ TARGET_SO_DIR_TIMESTAMP = $(TIMESTAMP_DIR)/.sitearchdir.-.markly.time
167
+
168
+ all: $(DLLIB)
169
+ static: $(STATIC_LIB)
170
+ .PHONY: all install static install-so install-rb
171
+ .PHONY: clean clean-so clean-static clean-rb
172
+
173
+ clean-static::
174
+ clean-rb-default::
175
+ clean-rb::
176
+ clean-so::
177
+ clean: clean-so clean-static clean-rb-default clean-rb
178
+ -$(Q)$(RM_RF) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time
179
+
180
+ distclean-rb-default::
181
+ distclean-rb::
182
+ distclean-so::
183
+ distclean-static::
184
+ distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb
185
+ -$(Q)$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
186
+ -$(Q)$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
187
+ -$(Q)$(RMDIRS) $(DISTCLEANDIRS) 2> /dev/null || true
188
+
189
+ realclean: distclean
190
+ install: install-so install-rb
191
+
192
+ install-so: $(DLLIB) $(TARGET_SO_DIR_TIMESTAMP)
193
+ $(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
194
+ clean-static::
195
+ -$(Q)$(RM) $(STATIC_LIB)
196
+ install-rb: pre-install-rb do-install-rb install-rb-default
197
+ install-rb-default: pre-install-rb-default do-install-rb-default
198
+ pre-install-rb: Makefile
199
+ pre-install-rb-default: Makefile
200
+ do-install-rb:
201
+ do-install-rb-default:
202
+ pre-install-rb-default:
203
+ @$(NULLCMD)
204
+ $(TARGET_SO_DIR_TIMESTAMP):
205
+ $(Q) $(MAKEDIRS) $(@D) $(RUBYARCHDIR)
206
+ $(Q) $(TOUCH) $@
207
+
208
+ site-install: site-install-so site-install-rb
209
+ site-install-so: install-so
210
+ site-install-rb: install-rb
211
+
212
+ .SUFFIXES: .c .m .cc .mm .cxx .cpp .o .S
213
+
214
+ .cc.o:
215
+ $(ECHO) compiling $(<)
216
+ $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
217
+
218
+ .cc.S:
219
+ $(ECHO) translating $(<)
220
+ $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
221
+
222
+ .mm.o:
223
+ $(ECHO) compiling $(<)
224
+ $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
225
+
226
+ .mm.S:
227
+ $(ECHO) translating $(<)
228
+ $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
229
+
230
+ .cxx.o:
231
+ $(ECHO) compiling $(<)
232
+ $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
233
+
234
+ .cxx.S:
235
+ $(ECHO) translating $(<)
236
+ $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
237
+
238
+ .cpp.o:
239
+ $(ECHO) compiling $(<)
240
+ $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
241
+
242
+ .cpp.S:
243
+ $(ECHO) translating $(<)
244
+ $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
245
+
246
+ .c.o:
247
+ $(ECHO) compiling $(<)
248
+ $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
249
+
250
+ .c.S:
251
+ $(ECHO) translating $(<)
252
+ $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
253
+
254
+ .m.o:
255
+ $(ECHO) compiling $(<)
256
+ $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $(CSRCFLAG)$<
257
+
258
+ .m.S:
259
+ $(ECHO) translating $(<)
260
+ $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -S $(CSRCFLAG)$<
261
+
262
+ $(TARGET_SO): $(OBJS) Makefile
263
+ $(ECHO) linking shared-object markly/$(DLLIB)
264
+ -$(Q)$(RM) $(@)
265
+ $(Q) $(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
266
+ $(Q) $(POSTLINK)
267
+
268
+
269
+
270
+ $(OBJS): $(HDRS) $(ruby_headers)
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/ext/markly/html.o ADDED
Binary file
Binary file
Binary file
Binary file
Binary file
data/ext/markly/man.o ADDED
Binary file
data/ext/markly/map.o ADDED
Binary file
Binary file
Binary file
data/ext/markly/node.o ADDED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/ext/markly/utf8.o ADDED
Binary file
data/ext/markly/xml.o ADDED
Binary file
data/lib/markly/node.rb CHANGED
@@ -100,7 +100,7 @@ module Markly
100
100
  def replace_section(new_node, replace_header: true, remove_subsections: true)
101
101
  # Delete until the next heading:
102
102
  self.next&.delete_until do |node|
103
- node.type == :heading && (!remove_subsections || node.header_level <= self.header_level)
103
+ node.type == :header && (!remove_subsections || node.header_level <= self.header_level)
104
104
  end
105
105
 
106
106
  self.append_after(new_node) if new_node
@@ -7,5 +7,5 @@
7
7
  # Copyright, 2020-2023, by Samuel Williams.
8
8
 
9
9
  module Markly
10
- VERSION = '0.8.0'
10
+ VERSION = '0.8.1'
11
11
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: markly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
@@ -107,12 +107,17 @@ extensions:
107
107
  extra_rdoc_files: []
108
108
  files:
109
109
  - conduct.md
110
+ - ext/markly/Makefile
110
111
  - ext/markly/arena.c
112
+ - ext/markly/arena.o
111
113
  - ext/markly/autolink.c
112
114
  - ext/markly/autolink.h
115
+ - ext/markly/autolink.o
113
116
  - ext/markly/blocks.c
117
+ - ext/markly/blocks.o
114
118
  - ext/markly/buffer.c
115
119
  - ext/markly/buffer.h
120
+ - ext/markly/buffer.o
116
121
  - ext/markly/case_fold_switch.inc
117
122
  - ext/markly/chunk.h
118
123
  - ext/markly/cmark-gfm-core-extensions.h
@@ -122,62 +127,94 @@ files:
122
127
  - ext/markly/cmark-gfm_export.h
123
128
  - ext/markly/cmark-gfm_version.h
124
129
  - ext/markly/cmark.c
130
+ - ext/markly/cmark.o
125
131
  - ext/markly/cmark_ctype.c
126
132
  - ext/markly/cmark_ctype.h
133
+ - ext/markly/cmark_ctype.o
127
134
  - ext/markly/commonmark.c
135
+ - ext/markly/commonmark.o
128
136
  - ext/markly/config.h
129
137
  - ext/markly/core-extensions.c
138
+ - ext/markly/core-extensions.o
130
139
  - ext/markly/entities.inc
131
140
  - ext/markly/ext_scanners.c
132
141
  - ext/markly/ext_scanners.h
142
+ - ext/markly/ext_scanners.o
133
143
  - ext/markly/extconf.rb
134
144
  - ext/markly/footnotes.c
135
145
  - ext/markly/footnotes.h
146
+ - ext/markly/footnotes.o
136
147
  - ext/markly/houdini.h
137
148
  - ext/markly/houdini_href_e.c
149
+ - ext/markly/houdini_href_e.o
138
150
  - ext/markly/houdini_html_e.c
151
+ - ext/markly/houdini_html_e.o
139
152
  - ext/markly/houdini_html_u.c
153
+ - ext/markly/houdini_html_u.o
140
154
  - ext/markly/html.c
141
155
  - ext/markly/html.h
156
+ - ext/markly/html.o
142
157
  - ext/markly/inlines.c
143
158
  - ext/markly/inlines.h
159
+ - ext/markly/inlines.o
144
160
  - ext/markly/iterator.c
145
161
  - ext/markly/iterator.h
162
+ - ext/markly/iterator.o
146
163
  - ext/markly/latex.c
164
+ - ext/markly/latex.o
147
165
  - ext/markly/linked_list.c
166
+ - ext/markly/linked_list.o
148
167
  - ext/markly/man.c
168
+ - ext/markly/man.o
149
169
  - ext/markly/map.c
150
170
  - ext/markly/map.h
171
+ - ext/markly/map.o
172
+ - ext/markly/markly.bundle
151
173
  - ext/markly/markly.c
152
174
  - ext/markly/markly.h
175
+ - ext/markly/markly.o
153
176
  - ext/markly/node.c
154
177
  - ext/markly/node.h
178
+ - ext/markly/node.o
155
179
  - ext/markly/parser.h
156
180
  - ext/markly/plaintext.c
181
+ - ext/markly/plaintext.o
157
182
  - ext/markly/plugin.c
158
183
  - ext/markly/plugin.h
184
+ - ext/markly/plugin.o
159
185
  - ext/markly/references.c
160
186
  - ext/markly/references.h
187
+ - ext/markly/references.o
161
188
  - ext/markly/registry.c
162
189
  - ext/markly/registry.h
190
+ - ext/markly/registry.o
163
191
  - ext/markly/render.c
164
192
  - ext/markly/render.h
193
+ - ext/markly/render.o
165
194
  - ext/markly/scanners.c
166
195
  - ext/markly/scanners.h
196
+ - ext/markly/scanners.o
167
197
  - ext/markly/scanners.re
168
198
  - ext/markly/strikethrough.c
169
199
  - ext/markly/strikethrough.h
200
+ - ext/markly/strikethrough.o
170
201
  - ext/markly/syntax_extension.c
171
202
  - ext/markly/syntax_extension.h
203
+ - ext/markly/syntax_extension.o
172
204
  - ext/markly/table.c
173
205
  - ext/markly/table.h
206
+ - ext/markly/table.o
174
207
  - ext/markly/tagfilter.c
175
208
  - ext/markly/tagfilter.h
209
+ - ext/markly/tagfilter.o
176
210
  - ext/markly/tasklist.c
177
211
  - ext/markly/tasklist.h
212
+ - ext/markly/tasklist.o
178
213
  - ext/markly/utf8.c
179
214
  - ext/markly/utf8.h
215
+ - ext/markly/utf8.o
180
216
  - ext/markly/xml.c
217
+ - ext/markly/xml.o
181
218
  - lib/markly.rb
182
219
  - lib/markly/flags.rb
183
220
  - lib/markly/node.rb
metadata.gz.sig CHANGED
Binary file