中国本土应用
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

15 lignes
332B

  1. # -*- coding: utf-8 -*-
  2. import markdown
  3. from odoo import api, models, _
  4. class MarkdownConverter(models.AbstractModel):
  5. _name = "ir.qweb.field.markdown"
  6. _description = "Qweb Field Markdown"
  7. _inherit = "ir.qweb.field"
  8. @api.model
  9. def value_to_html(self, value, options):
  10. return markdown.markdown(value)
上海开阖软件有限公司 沪ICP备12045867号-1