misaka

A Python binding for Hoedown.
授权协议 MIT License
开发语言 Python
所属分类 应用工具、 文档/文本编辑
软件类型 开源软件
地区 不详
投 递 者 华鹭洋
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Misaka

A CFFI binding for Hoedown (version 3), a markdown parsing library.

Documentation can be found at: http://misaka.61924.nl/

Professional support

Professional support for Misaka is available as part of the TideliftSubscription. Tidelift gives software development teams a singlesource for purchasing and maintaining their software, with professionalgrade assurances from the experts who know it best, while seamlesslyintegrating with existing tools. By subscribing you will help supportMisaka future development. Alternatively consider making a smalldonation.

Installation

Misaka has been tested on CPython 2.7, 3.5, 3.6, 3.7, 3.8 and PyPy 2.7and 3.5. It needs CFFI 1.12.0 or newer, because of this it will not workon PyPy 2.5 and older.

With pip:

pip install misaka

Or manually:

python setup.py install

Example

Very simple example:

import misaka as m
print m.html('some other text')

Or:

from misaka import Markdown, HtmlRenderer

rndr = HtmlRenderer()
md = Markdown(rndr)

print(md('some text'))

Security contact information

To report a security vulnerability, please use theTidelift security contact.Tidelift will coordinate the fix and disclosure.

  • 题目 有生之年我竟然能\(A\) 这个题求的是这个 \[\sum_{i=1}^n\sum_{j=1}^nf(gcd(i,j))^k\] \(f(i)\)定义为\(i\)的次大质因子,其中\(f(p)=1,f(1)=0\) 看到这道题的第一反应肯定是这东西TM还能求 习惯性反演 \[\sum_{d=1}^nF(d)f(d)^k\] \[=\sum_{d=1}^nf(d)^k\sum_{d|i}\mu

  • Misaka Network 与测试 题解 其实是很简单的一道二分图匹配,是谁拿着网络流在哪里瞎想 应该很容易发现,对于任何为 2 2 2的妹妹,拿出来单独作矩阵都一定是最优的。因为如果有任何一种选择方法包含了这个妹妹,都不会超过将其拿出来的贡献。 同理,对于任何一对相邻的 1 , 3 1,3 1,3,都应该将其连在一起,所以我们只用去考虑如何将 1 1 1与 3 3 3相连。 于是就很自然的想到

  • 胡策题,迫使懒得点技能树选手学算法。。。 至少杜教和min_25会了 不想写小结啊啊啊啊 那么对于这个题先上个莫反套路 然后用杜教乘个I把f*u给消掉,发现h就是f,这个可以用类似min_25的思想搞。。。 #include<cstdio> #include<iostream> #include<cstring> #include<cstdlib> #include<algorithm> #inc

  • #572. 「LibreOJ Round #11」Misaka Network 与求和 推式子 ∑ i = 1 n ∑ j = 1 n f ( g c d ( i , j ) ) k ∑ d = 1 n f ( d ) k ∑ i = 1 n d ∑ j = 1 n d [ g c d ( i , j ) = 1 ] ∑ d = 1 n f ( d ) k ∑ K = 1 n d μ ( k )

  • 题目 传送门 to LOJ 思路 答案为 ∑ i = 1 n f ( i ) k [ 2 ∑ j = 1 ⌊ n i ⌋ φ ( j ) − 1 ] \sum_{i=1}^{n}f(i)^k\left[2\sum_{j=1}^{\lfloor{n\over i}\rfloor}\varphi(j) -1\right] i=1∑n​f(i)k⎣ ⎡​2j=1∑⌊in​⌋​φ(j)−1⎦ ⎤​ 记 h

  • Time Limit: 1000 MS Memory Limit: 131072 K Description Misaka Mikoto is a main character of the Animation "To Aru Majutsu no Index" and "To Aru Kagaku no Railgun". She was enrolled into the

  • Solution 推一下式子,容易得到一个线性做法: ∑ d = 1 n f k ( d ) ( ( 2 ∑ i = 1 ⌊ n i ⌋ φ ( i ) ) − 1 ) \sum_{d=1}^nf^k(d)((2\sum_{i=1}^{\lfloor{n\over i}\rfloor}\varphi(i))-1) d=1∑n​fk(d)((2i=1∑⌊in​⌋​φ(i))−1) 这个东西数论分块加

  • misaka and last order Description Misaka Mikoto is a main character of the Animation "To Aru Majutsu no Index" and "To Aru Kagaku no Railgun". She was enrolled into the Academy City to train herself

  • 题目链接 LOJ 569   这道题的坑点或许不在于想到这个算法,而是在于这里有读入的坑点,会使得你在本地编译正确而在题目判断的时候得到WA。   因为,题目的操作系统是win的,而我自己的编译器是Mac OS的Xcode,所以最后造成了我没法读到'\r\n',是因为我只读了'\n'但是本地确实正确的。   所以,这里的读入要谨慎处理一下。   然后,就是关于这道题的思路了,很容易想到的是有2,那

  • 传送门 假设 \(f^k(i)\) 就是 \(f(i)\) 莫比乌斯反演得到 \[ans=\sum_{i=1}^{N}\lfloor\frac{N}{i}\rfloor^2\sum_{d|i}f(d)\mu(\frac{i}{d})\] 令 \(g(N)=\sum_{i=1}^{N}(f\times \mu)(i)\) 而 \((f\times \mu)\times 1=f\times (\mu\

  • http://oj.misakamm.com/JudgeOnline/problem.php?id=1003 #include <fstream> int main() { char bufa[1001] , bufb[1001] ; scanf( "%s%s" , bufa , bufb ) ; int h , i = 0 , j = 0 , k , a[1001] ,

  • T176289 Misaka Network 题意 给定一个DAG,尽可能少的选出一些不相邻的控制节点,使得整个图被控制,每个控制节点可以控制它本身和所有它指向的点 思路 蒟蒻考场的时候一直在想一种情况,拓扑排序分层图,奇数层选择控制点,甚至考虑了奇数层是不是需要全选…实际上不需要分层,因为奇数层是肯定要全选的(偶数层都不选,没有点控制奇数层的点) 所以只需要按照拓扑序,从小到大枚举,如果没被控制

相关阅读

相关文章

相关问答

相关文档