Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in / Register
  • E Editoria Typescript
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 8
    • Issues 8
    • List
    • Boards
    • Service Desk
    • Milestones
    • Iterations
    • Requirements
  • Merge requests 3
    • Merge requests 3
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
    • Test Cases
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Insights
    • Issue
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • XSweet
  • Editoria Typescript
  • Issues
  • #5

Closed
Open
Created Dec 30, 2016 by Wendell Piez@wendellOwner

Editoria `<extract>` element

Editoria has an <extract> element reserved for formal (inset) quotes or (what JATS calls) "display quotes". These will render differently from <blockquote>.

Word has no exact analogue to this (content type or proto content type), although users can assign named Styles for this purpose or convey it via ad-hoc formatting (usual story). As a default (ostensibly for this) it also offers the style "Quote", so TypescriptHTML will have:

<p class="Quote">Rub a dub dub</p>
<p class="Quote">Three men in a tub</p>

For now, it seems reasonable to capture .Quote (i.e. <p class='Quote'>) as <extract>:

<extract>Rub a dub dub</extract>
<extract>Three men in a tub</extract>

Or perhaps better, runs of p.Quote into <p> inside <extract>:

<extract>
  <p>Rub a dub dub</p>
  <p>Three men in a tub</p>
</extract>

In other words, is this a one-to-one mapping, or a "(loose) group to (wrapped) group" mapping?

Assignee
Assign to
Time tracking