forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Medlinemath #595
Open
Siedlerchr
wants to merge
1
commit into
main
Choose a base branch
from
medlinemath
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Medlinemath #595
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:m="http://www.w3.org/1998/Math/MathML" | ||
elementFormDefault="qualified" | ||
targetNamespace="http://www.w3.org/1998/Math/MathML"> | ||
<xs:element name="math"> | ||
<xs:complexType> | ||
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:MathExpression"/> | ||
<xs:attributeGroup ref="m:math.attributes"/> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:attributeGroup name="CommonDeprecatedAtt"> | ||
<xs:attribute name="other"/> | ||
</xs:attributeGroup> | ||
<xs:attributeGroup name="CommonAtt"> | ||
<xs:attribute name="id" type="xs:ID"/> | ||
<xs:attribute name="xref"/> | ||
<xs:attribute name="class" type="xs:NMTOKENS"/> | ||
<xs:attribute name="style" type="xs:string"/> | ||
<xs:attribute name="href" type="xs:anyURI"/> | ||
<xs:attributeGroup ref="m:CommonDeprecatedAtt"/> | ||
<xs:anyAttribute namespace="##other" processContents="skip"/> | ||
</xs:attributeGroup> | ||
<xs:attributeGroup name="math.deprecatedattributes"> | ||
<xs:attribute name="mode" type="xs:string"/> | ||
<xs:attribute name="macros" type="xs:string"/> | ||
</xs:attributeGroup> | ||
<xs:attributeGroup name="name"> | ||
<xs:attribute name="name" use="required" type="xs:NCName"/> | ||
</xs:attributeGroup> | ||
<xs:attributeGroup name="cd"> | ||
<xs:attribute name="cd" use="required" type="xs:NCName"/> | ||
</xs:attributeGroup> | ||
<xs:attributeGroup name="src"> | ||
<xs:attribute name="src" type="xs:anyURI"/> | ||
</xs:attributeGroup> | ||
<xs:element name="annotation"> | ||
<xs:complexType mixed="true"> | ||
<xs:attributeGroup ref="m:annotation.attributes"/> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:complexType name="annotation-xml.model"><!--content model altered for libxml (annotation-xml)--><xs:sequence> | ||
<xs:any processContents="lax"/> | ||
</xs:sequence> | ||
</xs:complexType> | ||
<xs:group name="anyElement"> | ||
<xs:choice> | ||
<xs:any namespace="##other" processContents="skip"/> | ||
<xs:any namespace="##local" processContents="skip"/> | ||
</xs:choice> | ||
</xs:group> | ||
<xs:element name="annotation-xml"> | ||
<xs:complexType> | ||
<xs:complexContent> | ||
<xs:extension base="m:annotation-xml.model"> | ||
<xs:attributeGroup ref="m:annotation.attributes"/> | ||
</xs:extension> | ||
</xs:complexContent> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:attributeGroup name="annotation.attributes"> | ||
<xs:attributeGroup ref="m:CommonAtt"/> | ||
<xs:attribute name="cd" type="xs:NCName"/> | ||
<xs:attribute name="name" type="xs:NCName"/> | ||
<xs:attributeGroup ref="m:DefEncAtt"/> | ||
<xs:attributeGroup ref="m:src"/> | ||
</xs:attributeGroup> | ||
<xs:attributeGroup name="DefEncAtt"> | ||
<xs:attribute name="encoding" type="xs:string"/> | ||
<xs:attribute name="definitionURL" type="xs:anyURI"/> | ||
</xs:attributeGroup> | ||
<xs:group name="semantics"> | ||
<xs:sequence> | ||
<xs:element name="semantics"> | ||
<xs:complexType> | ||
<xs:sequence> | ||
<xs:group ref="m:MathExpression"/> | ||
<xs:choice minOccurs="0" maxOccurs="unbounded"> | ||
<xs:element ref="m:annotation"/> | ||
<xs:element ref="m:annotation-xml"/> | ||
</xs:choice> | ||
</xs:sequence> | ||
<xs:attributeGroup ref="m:semantics.attributes"/> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:group> | ||
<xs:attributeGroup name="semantics.attributes"> | ||
<xs:attributeGroup ref="m:CommonAtt"/> | ||
<xs:attributeGroup ref="m:DefEncAtt"/> | ||
<xs:attribute name="cd" type="xs:NCName"/> | ||
<xs:attribute name="name" type="xs:NCName"/> | ||
</xs:attributeGroup> | ||
<xs:simpleType name="length"> | ||
<xs:restriction base="xs:string"> | ||
<xs:pattern value="\s*((-?[0-9]*([0-9]\.?|\.[0-9])[0-9]*(e[mx]|in|cm|mm|p[xtc]|%)?)|(negative)?((very){0,2}thi(n|ck)|medium)mathspace)\s*"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:schema> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚫 [reviewdog] <com.puppycrawl.tools.checkstyle.checks.NewlineAtEndOfFileCheck> reported by reviewdog 🐶
File does not end with a newline.