Show insets as text in the formatted bibliography entry.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40348 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Julien Rioux 2011-12-03 22:24:38 +00:00
parent a0f6d3db9e
commit 66b51a0a44

View File

@ -318,7 +318,8 @@ void InsetBibitem::collectBibKeys(InsetIterator const & it) const
keyvalmap.label(bibLabel());
DocIterator doc_it(it);
doc_it.forwardPos();
keyvalmap[from_ascii("ref")] = doc_it.paragraph().asString();
keyvalmap[from_ascii("ref")] = doc_it.paragraph().asString(
AS_STR_INSETS | AS_STR_SKIPDELETE);
buffer().addBibTeXInfo(key, keyvalmap);
}