inline_code_block.go 157 B

1234567891011
  1. package pg
  2. type InlineCodeBlock struct {
  3. SourceText *string
  4. LangOid Oid
  5. LangIsTrusted bool
  6. }
  7. func (n *InlineCodeBlock) Pos() int {
  8. return 0
  9. }