latex.go (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 |
// // Blackfriday Markdown Processor // Available at http://github.com/russross/blackfriday // // Copyright © 2011 Russ Ross <russ@russross.com>. // Distributed under the Simplified BSD License. // See README.md for details. // // // // LaTeX rendering backend // // package blackfriday import "bytes" // Latex is a type that implements the Renderer interface for LaTeX output. // // Do not create this directly, instead use the LatexRenderer function. type Latex struct { w HTMLWriter } // LatexRenderer creates and configures a Latex object, which // satisfies the Renderer interface. // // flags is a set of LATEX_* options ORed together (currently no such options // are defined). func LatexRenderer(flags int) Renderer { var writer HTMLWriter return &Latex{ w: writer, } } func (r *Latex) Write(b []byte) (int, error) { return r.w.Write(b) } // render code chunks using verbatim, or listings if we have a language func (r *Latex) BlockCode(text []byte, lang string) { if lang == "" { r.w.WriteString("\n\\begin{verbatim}\n") } else { r.w.WriteString("\n\\begin{lstlisting}[language=") r.w.WriteString(lang) r.w.WriteString("]\n") } r.w.Write(text) if lang == "" { r.w.WriteString("\n\\end{verbatim}\n") } else { r.w.WriteString("\n\\end{lstlisting}\n") } } func (r *Latex) TitleBlock(text []byte) { } func (r *Latex) BlockQuote(text []byte) { r.w.WriteString("\n\\begin{quotation}\n") r.w.Write(text) r.w.WriteString("\n\\end{quotation}\n") } func (r *Latex) BlockHtml(text []byte) { // a pretty lame thing to do... r.w.WriteString("\n\\begin{verbatim}\n") r.w.Write(text) r.w.WriteString("\n\\end{verbatim}\n") } func (r *Latex) BeginHeader(level int, id string) { switch level { case 1: r.w.WriteString("\n\\section{") case 2: r.w.WriteString("\n\\subsection{") case 3: r.w.WriteString("\n\\subsubsection{") case 4: r.w.WriteString("\n\\paragraph{") case 5: r.w.WriteString("\n\\subparagraph{") case 6: r.w.WriteString("\n\\textbf{") } } func (r *Latex) EndHeader(level int, id string, header []byte) { r.w.WriteString("}\n") } func (r *Latex) HRule() { r.w.WriteString("\n\\HRule\n") } func (r *Latex) BeginList(flags ListType) { if flags&ListTypeOrdered != 0 { r.w.WriteString("\n\\begin{enumerate}\n") } else { r.w.WriteString("\n\\begin{itemize}\n") } } func (r *Latex) EndList(flags ListType) { if flags&ListTypeOrdered != 0 { r.w.WriteString("\n\\end{enumerate}\n") } else { r.w.WriteString("\n\\end{itemize}\n") } } func (r *Latex) ListItem(text []byte, flags ListType) { r.w.WriteString("\n\\item ") r.w.Write(text) } func (r *Latex) BeginParagraph() { r.w.WriteString("\n") } func (r *Latex) EndParagraph() { r.w.WriteString("\n") } func (r *Latex) Table(header []byte, body []byte, columnData []CellAlignFlags) { r.w.WriteString("\n\\begin{tabular}{") for _, elt := range columnData { switch elt { case TableAlignmentLeft: r.w.WriteByte('l') case TableAlignmentRight: r.w.WriteByte('r') default: r.w.WriteByte('c') } } r.w.WriteString("}\n") r.w.Write(header) r.w.WriteString(" \\\\\n\\hline\n") r.w.Write(body) r.w.WriteString("\n\\end{tabular}\n") } func (r *Latex) TableRow(text []byte) { r.w.WriteString(" \\\\\n") r.w.Write(text) } func (r *Latex) TableHeaderCell(out *bytes.Buffer, text []byte, align CellAlignFlags) { if out.Len() > 0 { out.WriteString(" & ") } out.Write(text) } func (r *Latex) TableCell(out *bytes.Buffer, text []byte, align CellAlignFlags) { if out.Len() > 0 { out.WriteString(" & ") } out.Write(text) } // TODO: this func (r *Latex) BeginFootnotes() { } // TODO: this func (r *Latex) EndFootnotes() { } func (r *Latex) FootnoteItem(name, text []byte, flags ListType) { } func (r *Latex) AutoLink(link []byte, kind LinkType) { r.w.WriteString("\\href{") if kind == LinkTypeEmail { r.w.WriteString("mailto:") } r.w.Write(link) r.w.WriteString("}{") r.w.Write(link) r.w.WriteString("}") } func (r *Latex) CodeSpan(text []byte) { r.w.WriteString("\\texttt{") r.escapeSpecialChars(text) r.w.WriteString("}") } func (r *Latex) DoubleEmphasis(text []byte) { r.w.WriteString("\\textbf{") r.w.Write(text) r.w.WriteString("}") } func (r *Latex) Emphasis(text []byte) { r.w.WriteString("\\textit{") r.w.Write(text) r.w.WriteString("}") } func (r *Latex) Image(link []byte, title []byte, alt []byte) { if bytes.HasPrefix(link, []byte("http://")) || bytes.HasPrefix(link, []byte("https://")) { // treat it like a link r.w.WriteString("\\href{") r.w.Write(link) r.w.WriteString("}{") r.w.Write(alt) r.w.WriteString("}") } else { r.w.WriteString("\\includegraphics{") r.w.Write(link) r.w.WriteString("}") } } func (r *Latex) LineBreak() { r.w.WriteString(" \\\\\n") } func (r *Latex) Link(link []byte, title []byte, content []byte) { r.w.WriteString("\\href{") r.w.Write(link) r.w.WriteString("}{") r.w.Write(content) r.w.WriteString("}") } func (r *Latex) RawHtmlTag(tag []byte) { } func (r *Latex) TripleEmphasis(text []byte) { r.w.WriteString("\\textbf{\\textit{") r.w.Write(text) r.w.WriteString("}}") } func (r *Latex) StrikeThrough(text []byte) { r.w.WriteString("\\sout{") r.w.Write(text) r.w.WriteString("}") } // TODO: this func (r *Latex) FootnoteRef(ref []byte, id int) { } func needsBackslash(c byte) bool { for _, r := range []byte("_{}%$&\\~#") { if c == r { return true } } return false } func (r *Latex) escapeSpecialChars(text []byte) { for i := 0; i < len(text); i++ { // directly copy normal characters org := i for i < len(text) && !needsBackslash(text[i]) { i++ } if i > org { r.w.Write(text[org:i]) } // escape a character if i >= len(text) { break } r.w.WriteByte('\\') r.w.WriteByte(text[i]) } } func (r *Latex) Entity(entity []byte) { // TODO: convert this into a unicode character or something r.w.Write(entity) } func (r *Latex) NormalText(text []byte) { r.escapeSpecialChars(text) } // header and footer func (r *Latex) DocumentHeader() { r.w.WriteString("\\documentclass{article}\n") r.w.WriteString("\n") r.w.WriteString("\\usepackage{graphicx}\n") r.w.WriteString("\\usepackage{listings}\n") r.w.WriteString("\\usepackage[margin=1in]{geometry}\n") r.w.WriteString("\\usepackage[utf8]{inputenc}\n") r.w.WriteString("\\usepackage{verbatim}\n") r.w.WriteString("\\usepackage[normalem]{ulem}\n") r.w.WriteString("\\usepackage{hyperref}\n") r.w.WriteString("\n") r.w.WriteString("\\hypersetup{colorlinks,%\n") r.w.WriteString(" citecolor=black,%\n") r.w.WriteString(" filecolor=black,%\n") r.w.WriteString(" linkcolor=black,%\n") r.w.WriteString(" urlcolor=black,%\n") r.w.WriteString(" pdfstartview=FitH,%\n") r.w.WriteString(" breaklinks=true,%\n") r.w.WriteString(" pdfauthor={Blackfriday Markdown Processor v") r.w.WriteString(VERSION) r.w.WriteString("}}\n") r.w.WriteString("\n") r.w.WriteString("\\newcommand{\\HRule}{\\rule{\\linewidth}{0.5mm}}\n") r.w.WriteString("\\addtolength{\\parskip}{0.5\\baselineskip}\n") r.w.WriteString("\\parindent=0pt\n") r.w.WriteString("\n") r.w.WriteString("\\begin{document}\n") } func (r *Latex) DocumentFooter() { r.w.WriteString("\n\\end{document}\n") } func (r *Latex) Render(ast *Node) []byte { return nil } |