The branch, 2.0.x, has been updated. - Log -----------------------------------------------------------------
commit 832acf8f5817891d3bdaf0804c8df8d33e1a3409 Author: Julien Rioux <[email protected]> Date: Mon Jan 7 17:36:21 2013 +0100 Preserve BibTeX metadata in LyXHTML output (fixes #8451). diff --git a/src/BiblioInfo.cpp b/src/BiblioInfo.cpp index 516d1b4..f3fe83f 100644 --- a/src/BiblioInfo.cpp +++ b/src/BiblioInfo.cpp @@ -438,7 +438,11 @@ docstring BibTeXInfo::expandFormat(string const & format, ret += trans; } else { docstring const val = getValueForKey(key, xref); + if (richtext) + ret += from_ascii("<span class=\"bib-" + key + "\">"); ret += val; + if (richtext) + ret += from_ascii("</span>"); } } else { // beginning of key diff --git a/status.20x b/status.20x index db7e4ff..dff6404 100644 --- a/status.20x +++ b/status.20x @@ -31,6 +31,8 @@ What's new - Allow additional support for Japanese pLaTeX with utf8 encoding (bug #8408). +- Output BibTeX metadata in LyXHTML output (bug #8451). + * TEX2LYX IMPROVEMENTS ----------------------------------------------------------------------- Summary of changes: src/BiblioInfo.cpp | 4 ++++ status.20x | 2 ++ 2 files changed, 6 insertions(+), 0 deletions(-) hooks/post-receive -- The LyX Source Repository
