cmark-devel-0.27.1-3.1>t  DH`pX>[/=„p6{'!V9 .&[/=„"pQF2%0Ø.$lQamET)fZLHjR8p`ɵ|"D mh]M)gX\@G.+*B kEVoDf[A e|"w $^J#G[7޸2~yA`yjPC+ .[)Zn{MNe1;6);k/xKtu΄UHΊ9J;Fuu?hĚvY, v!'IF>:!? d  =tx ", T  h  |        & Xt X(z89:5FG H I( X4Y@\` ] ^bc-deflu vw x y z Ccmark-devel0.27.13.1Development files for cmark libraryThis package provides the development files for cmark.X>Qlamb22openSUSE Leap 42.3openSUSEBSD-2-Clause and MIT and CC-BY-SA-4.0http://bugs.opensuse.orgDevelopment/Libraries/C and C++https://github.com/jgm/cmarklinuxx86_64It UāA큤X0X>BX>AX>DX>DX>NX>AX>PX0X0f66cfbad83a92d935c3ae003c54b9e37de50decbb97205a0cc6781e9d7f3105226fc1889d14434decaa7fe7fa4afcac92ca7cbeefd0d09fc47b59988271129cfaf0db6354f9448509ed827b5b43bf182fc177a0bab021e1643f66251a4ae826fc1c296e4997119aeaa5a74849e2cb99b75848ecc72275f4e08ad05a8e2caf82elibcmark.so.0.27.1rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootcmark-0.27.1-3.1.src.rpmcmark-develcmark-devel(x86-64)pkgconfig(libcmark)@   /usr/bin/pkg-configlibcmark0_27_1rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)0.27.1-3.13.0.4-14.0-14.4.6-14.11.2X1@X.@XkWW!W!Vn@V#mimi.vx@gmail.commimi.vx@gmail.commpluskal@suse.commpluskal@suse.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.comkgronlund@suse.com- update to 0.27.1 * Set policy for CMP0063 to avoid a warning * Use VERSION_GREATER to clean up cmake version test- update to 0.27.0 * Fix CMAKE_C_VISIBILITY_PRESET for cmake versions greater than 1.8 * Fix for non-matching entities * Modified print_delimiters (commented out) so it compiles again. * make format: don't change order of includes. * Changed logic for null/eol checks only check once for "not at end of line" check for null before we check for newline characters (the previous patch would fail for NULL + CR) * Fix by not advancing past both \0 and \n * Add test for NUL-LF sequence * Fix memory leak in list parsing * Use cmark_mem to free where used to alloc * Allow a shortcut link before a * Allow tabs after setext header line * Don't let URI schemes start with spaces. * Fixed h2..h6 HTML blocks * Autolink scheme can contain digits * Fix nullary function declarations in cmark.h- Use current cmake macros- Fix building with different release types set via cmake- update to 0.26.1 * Removed unnecessary typedef that caused build failure on some platforms. * Use $(MAKE) in Makefile instead of hardcoded make- update to 0.26.0 * Implement spec changes for list items: + Empty list items cannot interrupt paragraphs. + Ordered lists cannot interrupt paragraphs unless they start with 1. + Removed "two blank lines break out of a list" feature. * Fix sourcepos for blockquotes. * Fix sourcepos for atx headers). * Fix ATX headers and thematic breaks to allow tabs as well as spaces. * Fix chunk_set_cstr with suffix of current string * Export targets on installation * Fix cmake warning about CMP0048 * commonmark renderer: Ensure we don't have a blank line before a code block when it's the first thing in a list item. * Change parsing of strong/emph in response to spec changes. process_emphasis now gets better results in corner cases. The change is this: when considering matches between an interior delimiter run (one that can open and can close) and another delimiter run, we require that the sum of the lengths of the two delimiter runs mod 3 is not 0. * Ported Robin Stocker's changes to link parsing in jgm/CommonMark#101. This uses a separate stack for brackets, instead of putting them on the delimiter stack. This avoids the need for looking through the delimiter stack for the next bracket. * cmark_reference_lookup: Return NULL if reference is null string. * Fix character type detection in commonmark.c + Implement cmark_isalpha. + Check for ASCII character before implicit cast to char. + Use internal ctype functions in commonmark.c. * Better documentation of memory-freeing responsibilities. in cmark.h and its man page * Use library functions to insert nodes in emphasis/link processing. Previously we did this manually, which introduces many places where errors can creep in. * Correctly handle list marker followed only by spaces. Previously when a list marker was followed only by spaces, cmark expected the following content to be indented by the same number of spaces. But in this case we should treat the line just like a blank line and set list padding accordingly. * Fixed a number of issues relating to line wrapping. + Extend CMARK_OPT_NOBREAKS to all renderers and add --nobreaks. + Do not autowrap, regardless of width parameter, if CMARK_OPT_NOBREAKS is set. + Fixed CMARK_OPT_HARDBREAKS for LaTeX and man renderers. + Ensure that no auto-wrapping occurs if CMARK_OPT_NOBREAKS is enabled, or if output is CommonMark and CMARK_OPT_HARDBREAKS is enabled. * Set stdin to binary mode on Windows * Add library option to render softbreaks as spaces. Note that the NOBREAKS option is HTML-only * renderer: no_linebreaks instead of no_wrap. We generally want this option to prohibit any breaking in things like headers (not just wraps, but softbreaks). * Coerce realurllen to int. This is an alternate solution for pull request, which introduced a new warning on the comparison. * Remove unused variable link_text. * Improved safety checks in buffer. * Add new interface allowing specification of custom memory allocator for nodes. Added cmark_node_new_with_mem, cmark_parser_new_with_mem, cmark_mem to API. * Reduce storage size for nodes by using bit flags instead of separate booleans. * cmake: Global handler for OOM situations. * Add tests for memory exhaustion. * Document in man page and public header that one should use the same memory allocator for every node in a tree. * Fix ctypes in Python FFI calls (Nick Wellnhofer). This didn't cause problems so far because all types are 32-bit on 32-bit systems and arguments are passed in registers on x86-64. The wrong types could cause crashes on other platforms, though. * Remove spurious failures in roundtrip tests. In the commonmark writer we separate lists, and lists and indented code, using a dummy HTML comment. So in evaluating the round-trip tests, we now strip out these comments. We also normalize HTML to avoid issues having to do with line breaks. * Added to_commonmark in test/cmark.py (for round-trip tests). * spec_test.py - parameterize do_test with converter. * spec_tests.py: exit code is now sum of failures and errors. This ensures that a failing exit code will be given when there are errors, not just with failures. * Fixed round trip tests. Previously they actually ran cmark instead of the round-trip version, since there was a bug in setting the ROUNDTRIP variable. * Added new roundtrip_tests.py. This replaces the old use of simple shell scripts. It is much faster, and more flexible. (We will be able to do custom normalization and skip certain tests.) * Fix leak in api_test. * Makefile: have leakcheck stop on first error instead of going through all the formats and options and probably getting the same output. * Add regression tests.- update to 0.25.2- Initial package for version 0.22.0lamb22 1489780305 0.27.1-3.10.27.1-3.10.27.1cmark.hcmark_export.hcmark_version.hcmark-relwithdebinfo.cmakecmark.cmakelibcmark.solibcmark.pccmark-develREADME.mdcmark.3.gz/usr/include//usr/lib64/cmake//usr/lib64//usr/lib64/pkgconfig//usr/share/doc/packages//usr/share/doc/packages/cmark-devel//usr/share/man/man3/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Leap:42.3/standard/2a4f16b54fd2e617ad95568d2dec9d6c-cmarkcpiolzma5x86_64-suse-linuxC source, UTF-8 Unicode textASCII textpkgconfig filedirectoryUTF-8 Unicode texttroff or preprocessor input, UTF-8 Unicode text (gzip compressed data, max compression, from Unix)PRfb!R"̕Î?`] crv(vX0BwGF gwKt%ފSKЪ5K}]v/ٲx2myD/NwF_.J[UOt/-LE'Aul%%ݻ&1FA7j'o K6aHnhW9>fcY{ur [Vh.U'/jRe ̗@EϡKi26(W.0)"z K?t0O<,Z0P sĂUoiwZlN* :\/1cZ*eQϫl'MCHtAX|$#lRLy2BPH-͕/ۭSLOW䱥FE:|UE}=Ze,A4_|4jyiĬ (E =r\GqaLK?Cۓʊ?v$oO:Zh9HI[8˲64sqbS w=P^OJq{vm.h k&\b+ [—* njWMxC%icx-em<7P_KB]T%xVr\b͎& +<*U 4 fGv jh?Jm3t6=SĘbu+63˄=t">:mJNiޫRRo Y^8~}"V!AGSG)X³<ףV<- ܮU/ƍ'ۗ?Wv7` 3pP nctY˚OjT.,r\`V~S88'Bԟ6\T:Bjj*vX# RSG ABG=:N0әϙk9gcTH.ȍT$*'͎MOS^EˣN{3c1buE Ej5xK)Ή!I 􄵇6SV|M):B'8&×{桤L wg3V+G 1ETKxyQ)";WCG07@[@ 6ՆCYtq[2YA= #Ohם>꿝.@"w決 ic!l$̸$>5ȝ wC)a䕁FptȦB|{DH)O*6soܘ1&Ex+F2 `Zy;/yޣ}/řw;\'FI"& ˁur9^z%?0f?X/w_5q`b)[Jc.$4 rPV'GG"'a . /*D {%høiﺅ!位);_e=6@ۓ_"NMOnVI\o_Y"Pil&Zv=N(WʼxSOk UK H JAJk}ߡp CDbݪF/$d2Jp4XYoCEqUaX.t79\ v9ikҿT8F{$i܁E[^Nw]Jt^XX 6N(^CyRoQ[ռdI@b=(bIE:0"( #9~<܌zޢCԻ1!5vK?dە1Y/=/Ê##ÇJ1Ġ28&hni1!H =zJ_Pn!{!J(c;OI2WiޚeJ*Ddzp5e=;LnItT5:A$GED HT nA je4\J? |\{d6?gz D{>> 6.b~?WQXXp%M:1P!TH8g9tmP*S>#2!`-7@I] ˬ3۸I wF!9Nn/{#G10-(Cꆅ 4w.K~̝`\CJ4?_dM", f{؉ g%b{9o+3.E!9 Tj%v=舼x/-tuTq%]Iݏ3/K4oCsv'(wAS+g ľqfTGRƏ1fHմ.sZd.*DŽh~|UQ(avO)v   "sԐUX׹0ZO)Go#2 #BgްWޚx۫&yރ/<8:;">?00(>Fc] (2cM+"_YNy^/uD5$7/ Bb;V JU{2w%hpk?&tvޱUX)4BD{|;b z}H^9gMflh!5SSm$-K ߄TZIt l2cp{wf~%Ÿ( tWô@08KUT#Gt~{Ize4Dp ;R]j.}ET0x5XlfhC-C=>U0B \SR#T^m͠ 4 _29x+{b qT+ϵ%GK.iK*f:5P%^WȈK{"hm,]x[D㽫B=?4?cWbEX9gy_Vu9pn۾u?=hnP?t }9yq^baj@YT@QOF&:2PCj'+.ob:@gf~_ 2=0a5#ؠ]W6gBmz'+%E2V^?WrKd|0񷧌KMo+lÆO8 -3M^}pj5+n2ز^M.i1A$*]n):,3E#- $ %FLn^Mr^cnO)V'#$}> q$t܋ X_CAF.lX2eBqH(tɼANpNu+kr ]kHepwxT5̓~` U gǸeHg8 'H b^6kWp)z?%DV9>*sdd@ED|},B! 1x(S>F0ٓs7%{=VTݓ5+UfNt0f珜V)(%(M!ٷkRm-p:^@҆/޸~q% U%O_q\NIߑC턻OP= JBnoď|`$7vgḢ#4h *Zb'уj9zi[&tީc4N$UDs}#-`i̖ZaTGb+?5)шp8dn^l74dGu T\_kӱsV ¢ Zm!yUMOo|I;~r&A8hw"gLJَ$:o,yR+Kvv?W)ۨ"0|QôRD Wތ^ě;?qØG<8 ZICvQ?~|كR3<6ѣQV7&m X@2mrMvTZYN\GR5]tRmFa V%m:Ib/w㞰u9ufkY7Qc^6< 6kGKME j0?g}.Z[4Ǣ1`<< ~9/* ԵK]yӤs!1FnȨ*l&xcs 6Un-!)4TO59&jչñ֪ PJ?nxz5 L15,qB~bgN-{J--&b6NEOa{Qz#82Aƥ0l$۞q#'Zy(d+eI . jN6%Zw[mt:GRP96NsDmxf{pd[BW< D@h&J{3ύ =ڣDh7ՄʕvDAepdfy!'#6%Rw'HՑ cwa|v_!P}&eԔL܌9pH^8mAS/O@g!'_N]䘴 ~*H4!oi{-;z*VNSU.\` Nȁq E"Rtɩ^}Ufj;IA^"}2=f2섕-{YO@wnU3zÞ9U^[ekxJ~:y@ZXj:~aέ&ojPD{zZ欻k&D#eb3lBGhcz\S3iS:'%Y=Lz5'#Ҫgmpܩ94A>,C/l.0!\X"ab~;FtQD&ϓݐ²^K:w'S8[[$Wr[xQ~2 fj)^J4l ɿ<>6#a n n9o.+=-nʑ> o_w6ּj%23F*PKP罿۩GWnொ>V1dVDO!g|= ~^,nv[붪ֳ`91 8PŽaQЂ-aH(;) iʊ) !bhh2f*MeQD]HgB94X9_d!]D#ffMy{c2kuivdbqc697q[m`kӖ})]6N'iDK(\.cά>OSIPGd/}}ob +L#V#FN?S6`3=35iƌ&pUC6ld*|]RuF|}f'qAr'4~kkX !%ލ%\'.p_Ihzkڐ>Y- ¸j9YmMx5pﺺ;{bҗ Ƹo|w/G87 C/U:@Je'>/ͮ@/aJ'T+Q8'+ 0bX9~X!V:5KQ汖h$gJ˗;/SB ZdxK%0& ffhADxDEI[u J0+ѿ?zcٽxÅ7tyG!?Kte"t{_ݪ{h6ah YCH sjlfcJ*G|U˅ymd2RQZkƯ=ΐ;5#+t$)cp ?_Tt"c/JD]̰;#+Ґ{RƳ<]v~n^T(W'@Zكi[H8D8B*I12- zx^S0,x/Uc iJiLW͎H&+ wٮ$~߶aЯd`H\$d.wYB[NICmB>[!go_AF4{vU#@!o=<1lݵˮȔ4|q8kG蠣y\RLF{9&b:o 6'32:V -c4wZ~Sl!hV>.k!ʏ0`e?|/2[qehrD0&2eqbe X?ZkmI#۳Ux]PH:A^ V4OC![vj`Gj\T&\)W ;2kX1!?qf a&QJ(ᳬƮ̔W,ѫAÕU׺NSg1eHz7v>8X2WPX]iNUЍj:'keH@4R+8BHS(#,~R9^s~qPȖG!sum~~7QDQ曜p`-Y CǐWP.}ǠN'o~z %Ugdų\ c^yupۻ/_I=EardYia)̣J2Jx^8^LVU,>F^nÍbʁuϒt8l[5'xt a .Q*-Qe(h&۠ɕ"σ8GKFt+ Ӛ]'%*fq|ŬPR1؇|@!ttSZ!|X 94&d:&8t |oϴfߖ!` F=ӂJ;ZnCqyZ=\2\$mmTPǎ ZPd j7s!!K'hz2?TGAl.ᬱ;q1O28>@#\mm\&.ObuޟA0 pt$ F4e~IɼQQd:{ 9.TQP VyH' rg We/tK'cm ngZk?-:Qx ;baxQDӚF%8 ]"nЉz>ud?鞜H ^K}l]9;X𢬯i%1RVbd#dl# IW64pre{Pպ[Ǣ墨-+ lwx85{M. )en.3r5.k-)MSiJL`To!Vkɩݏyd]7#2 x/#à E~sUdZVtPcPUKl@rh薮 Y8J't޻o-[D_n#+KHJ{j5g-@fAС/$nD<;otDL' b>7WNcTNx2L Y_9iXďC u