Skip to content

Commit

Permalink
Merge pull request #237 from metanorma/update_table_width
Browse files Browse the repository at this point in the history
Update table width
  • Loading branch information
Intelligent2013 authored Feb 5, 2024
2 parents d470533 + 1694953 commit 1db8d95
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SHELL ?= /bin/bash
endif

#JAR_VERSION := $(shell mvn -q -Dexec.executable="echo" -Dexec.args='$${project.version}' --non-recursive exec:exec -DforceStdout)
JAR_VERSION := 1.82
JAR_VERSION := 1.83
JAR_FILE := mn2pdf-$(JAR_VERSION).jar

all: target/$(JAR_FILE)
Expand Down
6 changes: 3 additions & 3 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Update version in `pom.xml`, e.g.:
----
<groupId>org.metanorma.fop</groupId>
<artifactId>mn2pdf</artifactId>
<version>1.82</version>
<version>1.83</version>
<name>Metanorma XML to PDF converter</name>
----

Expand All @@ -111,8 +111,8 @@ Tag the same version in Git:

[source,xml]
----
git tag v1.82
git push origin v1.82
git tag v1.83
git push origin v1.83
----

Then the corresponding GitHub release will be automatically created at:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.metanorma.fop</groupId>
<artifactId>mn2pdf</artifactId>
<version>1.82</version>
<version>1.83</version>
<name>Metanorma XML to PDF converter</name>
<packaging>jar</packaging>
<url>https://www.metanorma.org</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/table_if.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
</xsl:variable>


<xsl:variable name="table_id" select="concat($table_if_prefix, $id, '_')"/>
<xsl:variable name="table_id" select="concat($table_if_prefix, $id, '@')"/>

<xsl:variable name="cells_">
<!-- <xsl:for-each select="//if:id[starts-with(@name, $table_id)][1]"> --> <!-- select only first in 'g', no need select 'id' ends with '_end' -->
Expand Down

0 comments on commit 1db8d95

Please sign in to comment.